From 5284a5a742b3b6ccc62e89474d51027dbafe81dd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Breitbart?= Date: Sat, 15 Sep 2018 00:41:55 +0200 Subject: [PATCH] fix spelling --- src/Buffer.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Buffer.ts b/src/Buffer.ts index d7760b11..815dc84b 100644 --- a/src/Buffer.ts +++ b/src/Buffer.ts @@ -410,7 +410,7 @@ export class Marker extends EventEmitter implements IMarker { * It will never read/return string data beyond `startIndex - startOverscan` * or `endIndex + endOverscan`. Therefore the first and last line might be truncated. * It is possible to always get the full string for the first and last line as well - * by setting the overscan values to the actual buffer length, but not recommended + * by setting the overscan values to the actual buffer length. This not recommended * since it might return the whole buffer within a single string in a worst case scenario. */ export class BufferStringIterator implements IBufferStringIterator {