From 1722ff500977225491af3ac52613c6a2e1cf619a Mon Sep 17 00:00:00 2001 From: NAHO <90870942+trueNAHO@users.noreply.github.com> Date: Wed, 25 Oct 2023 19:31:55 +0200 Subject: [PATCH] Add missing period at sentence end --- src/std_misc/file/read_lines.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/std_misc/file/read_lines.md b/src/std_misc/file/read_lines.md index a6f330094e..1a2a64241e 100644 --- a/src/std_misc/file/read_lines.md +++ b/src/std_misc/file/read_lines.md @@ -62,7 +62,7 @@ fn main() { } } -// The output is wrapped in a Result to allow matching on errors +// The output is wrapped in a Result to allow matching on errors. // Returns an Iterator to the Reader of the lines of the file. fn read_lines
(filename: P) -> io::Result