From 33e509659dca49ff741c02f1d85d67d320c0402e Mon Sep 17 00:00:00 2001 From: Ferdinand Majerech Date: Thu, 24 Jul 2014 18:42:12 +0200 Subject: [PATCH] Minor doc fix. --- source/dyaml/reader.d | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/dyaml/reader.d b/source/dyaml/reader.d index 4c2d8ab..397ddcc 100644 --- a/source/dyaml/reader.d +++ b/source/dyaml/reader.d @@ -626,7 +626,7 @@ size_t endOfLastUTFSequence(C)(const C[] buffer) { // If stride goes beyond end of the buffer, return end. // Otherwise the last sequence ends at buffer.length, so we can - // return that. (Unless there is an invalid code point, which is + // return that. (Unless there is an invalid code unit, which is // caught at decoding) return (stride > buffer.length - end) ? cast(size_t)end : buffer.length; }