Doc fixes.
This commit is contained in:
parent
568e75d3de
commit
8f94a40730
|
@ -211,13 +211,13 @@ final class Reader
|
||||||
|
|
||||||
/// Get specified number of characters starting at current position.
|
/// Get specified number of characters starting at current position.
|
||||||
///
|
///
|
||||||
/// Note: This gets only a "view" into the internal buffer,
|
/// Note: This gets only a "view" into the internal buffer, which will be
|
||||||
/// which will get invalidated after other Reader calls. Use SliceBuilder
|
/// invalidated after other Reader calls. Use SliceBuilder to build slices
|
||||||
/// to build slices for permanent use.
|
/// for permanent use.
|
||||||
///
|
///
|
||||||
/// Params: length = Number of characters (code points, not bytes) to get. May
|
/// Params: length = Number of characters (code points, not bytes) to get. May
|
||||||
/// reach past the end of the buffer; in that case the
|
/// reach past the end of the buffer; in that case the returned
|
||||||
/// returned slice will be shorter.
|
/// slice will be shorter.
|
||||||
///
|
///
|
||||||
/// Returns: Characters starting at current position or an empty slice if out of bounds.
|
/// Returns: Characters starting at current position or an empty slice if out of bounds.
|
||||||
char[] prefix(const size_t length) @safe pure nothrow @nogc
|
char[] prefix(const size_t length) @safe pure nothrow @nogc
|
||||||
|
|
Loading…
Reference in a new issue