From 8f94a4073062cf4d1a4951910e1192d9ca901499 Mon Sep 17 00:00:00 2001 From: Ferdinand Majerech Date: Tue, 5 Aug 2014 20:56:30 +0200 Subject: [PATCH] Doc fixes. --- source/dyaml/reader.d | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/source/dyaml/reader.d b/source/dyaml/reader.d index f00f9b5..cbc3359 100644 --- a/source/dyaml/reader.d +++ b/source/dyaml/reader.d @@ -211,13 +211,13 @@ final class Reader /// Get specified number of characters starting at current position. /// - /// Note: This gets only a "view" into the internal buffer, - /// which will get invalidated after other Reader calls. Use SliceBuilder - /// to build slices for permanent use. + /// Note: This gets only a "view" into the internal buffer, which will be + /// invalidated after other Reader calls. Use SliceBuilder to build slices + /// for permanent use. /// - /// Params: length = Number of characters (code points, not bytes) to get. May - /// reach past the end of the buffer; in that case the - /// returned slice will be shorter. + /// Params: length = Number of characters (code points, not bytes) to get. May + /// reach past the end of the buffer; in that case the returned + /// slice will be shorter. /// /// Returns: Characters starting at current position or an empty slice if out of bounds. char[] prefix(const size_t length) @safe pure nothrow @nogc