From 3b1b460e6afeb7ff9beeaf13cc3d2bc07c2beb0a Mon Sep 17 00:00:00 2001 From: arpio Date: Mon, 3 Nov 2025 02:28:40 +0100 Subject: [PATCH] Update lib.go --- lib.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib.go b/lib.go index 85a1c98..a3dbf84 100644 --- a/lib.go +++ b/lib.go @@ -154,9 +154,9 @@ func (w *Writer) WriteRune(r rune) (int, error) { } // Flush makes the underlying editors to release their associated state, and writes out the resulting text to -// the underlying io.Writer, but first passes it to the subsequent editors for editing. When the used editor -// instances comply with the expectations of the Editor interface, the writer will have a fresh state and can be -// reused for further editing. The Flush method of underlying writers is not called. +// the underlying io.Writer, but first passes it to the subsequent editors for editing. Is there were no errors, +// and the used editor instances comply with the expectations of the Editor interface, the writer will have a +// fresh state and can be reused for further editing. The Flush method of underlying writers is not called. func (w *Writer) Flush() error { return w.flush() }