From 04dbd8003798213b98230b8c6d35d2c377196eaa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Johannes=20M=C3=BCller?= Date: Tue, 27 Mar 2018 23:05:30 +0200 Subject: [PATCH] Fix typo in IO doc --- src/io.cr | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/io.cr b/src/io.cr index 611ad5532254..b2b0bdaf2b55 100644 --- a/src/io.cr +++ b/src/io.cr @@ -7,7 +7,7 @@ require "c/errno" # The `IO` class is the basis for all input and output in Crystal. # # This class is inherited by types like `File`, `Socket` and `IO::Memory` and -# provide many useful methods for reading from and writing to an IO, like `print`, `puts`, +# provides many useful methods for reading from and writing to an IO, like `print`, `puts`, # `gets` and `printf`. # # The only requirement for a type including the `IO` module is to define