Doc fixes.

This commit is contained in:
Ferdinand Majerech 2014-07-25 16:54:06 +02:00
parent 46255846e6
commit 86e6628fa1

View file

@ -1309,7 +1309,7 @@ final class Scanner
/// Scan a qouted flow scalar token with specified quotes. /// Scan a qouted flow scalar token with specified quotes.
/// ///
/// In case of an error, error_ is set. Check this before using the result. /// In case of an error, error_ is set. Use throwIfError() to handle this.
Token scanFlowScalar(const ScalarStyle quotes) @trusted pure nothrow Token scanFlowScalar(const ScalarStyle quotes) @trusted pure nothrow
{ {
const startMark = reader_.mark; const startMark = reader_.mark;
@ -1339,7 +1339,7 @@ final class Scanner
/// Assumes that the caller is building a slice in Reader, and puts the scanned /// Assumes that the caller is building a slice in Reader, and puts the scanned
/// characters into that slice. /// characters into that slice.
/// ///
/// In case of an error, error_ is set. Check this before using the result. /// In case of an error, error_ is set. Use throwIfError() to handle this.
void scanFlowScalarNonSpacesToSlice(const ScalarStyle quotes, const Mark startMark) void scanFlowScalarNonSpacesToSlice(const ScalarStyle quotes, const Mark startMark)
@system pure nothrow @nogc @system pure nothrow @nogc
{ {
@ -1439,7 +1439,7 @@ final class Scanner
/// Assumes that the caller is building a slice in Reader, and puts the scanned /// Assumes that the caller is building a slice in Reader, and puts the scanned
/// spaces into that slice. /// spaces into that slice.
/// ///
/// In case of an error, error_ is set. Check this before using the result. /// In case of an error, error_ is set. Use throwIfError() to handle this.
void scanFlowScalarSpacesToSlice(const Mark startMark) void scanFlowScalarSpacesToSlice(const Mark startMark)
@system pure nothrow @nogc @system pure nothrow @nogc
{ {
@ -1484,7 +1484,7 @@ final class Scanner
/// Assumes that the caller is building a slice in Reader, and puts the scanned /// Assumes that the caller is building a slice in Reader, and puts the scanned
/// line breaks into that slice. /// line breaks into that slice.
/// ///
/// In case of an error, error_ is set. Check this before using the result. /// In case of an error, error_ is set. Use throwIfError() to handle this.
bool scanFlowScalarBreaksToSlice(const Mark startMark) bool scanFlowScalarBreaksToSlice(const Mark startMark)
@system pure nothrow @nogc @system pure nothrow @nogc
{ {
@ -1517,7 +1517,7 @@ final class Scanner
/// Scan plain scalar token (no block, no quotes). /// Scan plain scalar token (no block, no quotes).
/// ///
/// In case of an error, error_ is set. Check this before using the result. /// In case of an error, error_ is set. Use throwIfError() to handle this.
Token scanPlain() @trusted pure nothrow Token scanPlain() @trusted pure nothrow
{ {
// We keep track of the allowSimpleKey_ flag here. // We keep track of the allowSimpleKey_ flag here.