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.