Close parenthesis

Also replace semicolon with comma to fix grammar.
This commit is contained in:
Joshua Schwartz
2022-07-14 14:06:41 -05:00
committed by Abduqodiri Qurbonzoda
parent c3031ccff5
commit 96e789098f
@@ -59,8 +59,8 @@ public inline fun String.reader(): StringReader = StringReader(this)
* Returns a sequence of corresponding file lines.
*
* *Note*: the caller must close the underlying `BufferedReader`
* when the iteration is finished; as the user may not complete the iteration loop (e.g. using a method like find() or any() on the iterator
* may terminate the iteration early.
* when the iteration is finished, as the user may not complete the iteration loop (e.g. using a method like find() or any() on the iterator
* may terminate the iteration early).
*
* We suggest you try the method [useLines] instead which closes the stream when the processing is complete.
*