From a38dcaf901995d1f8b0f7e7d4b03aa951b8c29a1 Mon Sep 17 00:00:00 2001 From: Josh Soref Date: Wed, 28 Feb 2018 02:51:57 +0000 Subject: [PATCH] spelling: characters --- src/BuildUtil/CoreUtil/ZLib.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/BuildUtil/CoreUtil/ZLib.cs b/src/BuildUtil/CoreUtil/ZLib.cs index 86a2c0fc..c20781b2 100644 --- a/src/BuildUtil/CoreUtil/ZLib.cs +++ b/src/BuildUtil/CoreUtil/ZLib.cs @@ -4358,7 +4358,7 @@ namespace CoreUtil.Internal /*******************************/ /// Reads a number of characters from the current source Stream and writes the data to the target array at the specified index. /// The source Stream to read from. - /// Contains the array of characteres read from the source Stream. + /// Contains the array of characters read from the source Stream. /// The starting index of the target array. /// The maximum number of characters to read from the source Stream. /// The number of characters read. The number will be less than or equal to count depending on the data available in the source Stream. Returns -1 if the end of the stream is reached. @@ -4383,7 +4383,7 @@ namespace CoreUtil.Internal /// Reads a number of characters from the current source TextReader and writes the data to the target array at the specified index. /// The source TextReader to read from - /// Contains the array of characteres read from the source TextReader. + /// Contains the array of characters read from the source TextReader. /// The starting index of the target array. /// The maximum number of characters to read from the source TextReader. /// The number of characters read. The number will be less than or equal to count depending on the data available in the source TextReader. Returns -1 if the end of the stream is reached.