@@ -157,7 +157,7 @@ public Deflater() : this(DEFAULT_COMPRESSION, false)
157157 /// the compression level, a value between NO_COMPRESSION
158158 /// and BEST_COMPRESSION, or DEFAULT_COMPRESSION.
159159 /// </param>
160- /// <exception cref="System. ArgumentOutOfRangeException">if lvl is out of range.</exception>
160+ /// <exception cref="ArgumentOutOfRangeException">if lvl is out of range.</exception>
161161 public Deflater ( int level ) : this ( level , false )
162162 {
163163 }
@@ -174,7 +174,7 @@ public Deflater(int level) : this(level, false)
174174 /// beginning and the adler checksum at the end of the output. This is
175175 /// useful for the GZIP/PKZIP formats.
176176 /// </param>
177- /// <exception cref="System. ArgumentOutOfRangeException">if lvl is out of range.</exception>
177+ /// <exception cref="ArgumentOutOfRangeException">if lvl is out of range.</exception>
178178 public Deflater ( int level , bool noZlibHeaderOrFooter )
179179 {
180180 if ( level == DEFAULT_COMPRESSION )
@@ -302,7 +302,7 @@ public bool IsNeedingInput
302302 /// <param name="input">
303303 /// the buffer containing the input data.
304304 /// </param>
305- /// <exception cref="System. InvalidOperationException">
305+ /// <exception cref="InvalidOperationException">
306306 /// if the buffer was finished() or ended().
307307 /// </exception>
308308 public void SetInput ( byte [ ] input )
@@ -325,7 +325,7 @@ public void SetInput(byte[] input)
325325 /// <param name="count">
326326 /// the number of data bytes of input.
327327 /// </param>
328- /// <exception cref="System. InvalidOperationException">
328+ /// <exception cref="InvalidOperationException">
329329 /// if the buffer was Finish()ed or if previous input is still pending.
330330 /// </exception>
331331 public void SetInput ( byte [ ] input , int offset , int count )
@@ -418,10 +418,10 @@ public int Deflate(byte[] output)
418418 /// The number of compressed bytes added to the output, or 0 if either
419419 /// needsInput() or finished() returns true or length is zero.
420420 /// </returns>
421- /// <exception cref="System. InvalidOperationException">
421+ /// <exception cref="InvalidOperationException">
422422 /// If Finish() was previously called.
423423 /// </exception>
424- /// <exception cref="System. ArgumentOutOfRangeException">
424+ /// <exception cref="ArgumentOutOfRangeException">
425425 /// If offset or length don't match the array length.
426426 /// </exception>
427427 public int Deflate ( byte [ ] output , int offset , int length )
@@ -528,7 +528,7 @@ public int Deflate(byte[] output, int offset, int length)
528528 /// <param name="dictionary">
529529 /// the dictionary.
530530 /// </param>
531- /// <exception cref="System. InvalidOperationException">
531+ /// <exception cref="InvalidOperationException">
532532 /// if SetInput () or Deflate () were already called or another dictionary was already set.
533533 /// </exception>
534534 public void SetDictionary ( byte [ ] dictionary )
@@ -553,7 +553,7 @@ public void SetDictionary(byte[] dictionary)
553553 /// <param name="count">
554554 /// The number of bytes in the dictionary.
555555 /// </param>
556- /// <exception cref="System. InvalidOperationException">
556+ /// <exception cref="InvalidOperationException">
557557 /// If SetInput () or Deflate() were already called or another dictionary was already set.
558558 /// </exception>
559559 public void SetDictionary ( byte [ ] dictionary , int index , int count )
0 commit comments