Fix comments

This commit is contained in:
Matt Nadareski
2025-09-05 09:15:05 -04:00
parent ec99304c51
commit f0cb15c2e4
2 changed files with 3 additions and 3 deletions

View File

@@ -55,7 +55,7 @@ namespace SabreTools.IO.Extensions
}
/// <summary>
/// Read string data from the source
/// Read string data from a byte array
/// </summary>
/// <param name="charLimit">Number of characters needed to be a valid string, default 5</param>
/// <returns>String list containing the requested data, null on error</returns>
@@ -93,7 +93,7 @@ namespace SabreTools.IO.Extensions
}
/// <summary>
/// Read string data from the source with an encoding
/// Read string data from a byte array with an encoding
/// </summary>
/// <param name="bytes">Byte array representing the source data</param>
/// <param name="charLimit">Number of characters needed to be a valid string</param>

View File

@@ -74,7 +74,7 @@ namespace SabreTools.IO.Extensions
}
/// <summary>
/// Read string data from the source
/// Read string data from a Stream
/// </summary>
/// <param name="position">Position in the source to read from</param>
/// <param name="length">Length of the requested data</param>