diff --git a/CBOR/PeterO/Cbor/CharacterReader.cs b/CBOR/PeterO/Cbor/CharacterReader.cs index b3b31899..335f1318 100644 --- a/CBOR/PeterO/Cbor/CharacterReader.cs +++ b/CBOR/PeterO/Cbor/CharacterReader.cs @@ -38,7 +38,7 @@ public CharacterReader(string str) : this(str, false, false) { // string. // If true and the first character in // the string is U+FEFF, skip that character. - // The parameter The parameter is null. public CharacterReader(string str, bool skipByteOrderMark) : this(str, skipByteOrderMark, false) { @@ -53,7 +53,7 @@ public CharacterReader(string str, bool skipByteOrderMark) // When encountering invalid encoding, throw // an exception if this parameter is true, or replace it with U+FFFD // (replacement character) if this parameter is false. - // The parameter The parameter is null. public CharacterReader( string str, @@ -81,12 +81,12 @@ public CharacterReader( // The length, in code units, of the desired // portion of (but not more than 's length). - // Either "offset" or + // Either "offset" or // "length" is less than 0 or greater than // "str"'s length, or "str"'s length // minus "offset" is less than // "length". - // The parameter The parameter is null. public CharacterReader(string str, int offset, int length) : this(str, offset, length, false, false) { @@ -106,9 +106,9 @@ public CharacterReader(string str, int offset, int length) // When encountering invalid encoding, throw // an exception if this parameter is true, or replace it with U+FFFD // (replacement character) if this parameter is false. - // The parameter The parameter is null. - // Either Either or is less than 0 or // greater than 's length, or 's length minus is less than @@ -158,7 +158,7 @@ public CharacterReader( // first in the stream, and replace invalid byte sequences with // replacement characters (U+FFFD). // A readable data stream. - // The parameter The parameter is null. public CharacterReader(Stream stream) : this(stream, 0, false) { } @@ -209,7 +209,7 @@ public CharacterReader(Stream stream, int mode, bool errorThrow) // 3: Detect UTF-16 using BOM, otherwise UTF-8. // 4: Detect UTF-16/UTF-32 using BOM, otherwise UTF-8. (Tries to // detect UTF-32 first.). - // The parameter The parameter is null. public CharacterReader(Stream stream, int mode) : this(stream, mode, false, false) { @@ -240,7 +240,7 @@ public CharacterReader(Stream stream, int mode) // (including when "mode" is 0) and this parameter is true, // won't skip the BOM character if it occurs at the start of the // stream. - // The parameter The parameter is null. public CharacterReader( Stream stream, @@ -274,9 +274,9 @@ private interface IByteReader { // The number of code points read from the stream. This can // be less than the parameter if the end of // the stream is reached. - // The parameter The parameter is null. - // Either + // Either // or is less than 0 or greater than // 's length, or 's // length minus is less than