@@ -161,7 +161,7 @@ public enum GeneralBitFlags
161161 Method = 0x0006 ,
162162
163163 /// <summary>
164- /// Bit 3 if set indicates a trailing data desciptor is appended to the entry data
164+ /// Bit 3 if set indicates a trailing data descriptor is appended to the entry data
165165 /// </summary>
166166 Descriptor = 0x0008 ,
167167
@@ -443,12 +443,12 @@ public static class ZipConstants
443443 public const int ArchiveExtraDataSignature = 'P' | ( 'K' << 8 ) | ( 6 << 16 ) | ( 7 << 24 ) ;
444444
445445 /// <summary>
446- /// Central header digitial signature
446+ /// Central header digital signature
447447 /// </summary>
448448 public const int CentralHeaderDigitalSignature = 'P' | ( 'K' << 8 ) | ( 5 << 16 ) | ( 5 << 24 ) ;
449449
450450 /// <summary>
451- /// Central header digitial signature
451+ /// Central header digital signature
452452 /// </summary>
453453 [ Obsolete ( "Use CentralHeaderDigitalSignaure instead" ) ]
454454 public const int CENDIGITALSIG = 'P' | ( 'K' << 8 ) | ( 5 << 16 ) | ( 5 << 24 ) ;
@@ -468,7 +468,7 @@ public static class ZipConstants
468468
469469 /// <summary>
470470 /// Default encoding used for string conversion. 0 gives the default system OEM code page.
471- /// Using the default code page isnt the full solution neccessarily
471+ /// Using the default code page isnt the full solution necessarily
472472 /// there are many variable factors, codepage 850 is often a good choice for
473473 /// European users, however be careful about compatability.
474474 /// </summary>
@@ -479,32 +479,32 @@ public static int DefaultCodePage
479479 set => ZipStrings . CodePage = value ;
480480 }
481481
482- /// <summary> Depracated wrapper for <see cref="ZipStrings.ConvertToString(byte[], int)"/></summary>
482+ /// <summary> Deprecated wrapper for <see cref="ZipStrings.ConvertToString(byte[], int)"/></summary>
483483 [ Obsolete ( "Use ZipStrings.ConvertToString instead" ) ]
484484 public static string ConvertToString ( byte [ ] data , int count )
485485 => ZipStrings . ConvertToString ( data , count ) ;
486486
487- /// <summary> Depracated wrapper for <see cref="ZipStrings.ConvertToString(byte[])"/></summary>
487+ /// <summary> Deprecated wrapper for <see cref="ZipStrings.ConvertToString(byte[])"/></summary>
488488 [ Obsolete ( "Use ZipStrings.ConvertToString instead" ) ]
489489 public static string ConvertToString ( byte [ ] data )
490490 => ZipStrings . ConvertToString ( data ) ;
491491
492- /// <summary> Depracated wrapper for <see cref="ZipStrings.ConvertToStringExt(int, byte[], int)"/></summary>
492+ /// <summary> Deprecated wrapper for <see cref="ZipStrings.ConvertToStringExt(int, byte[], int)"/></summary>
493493 [ Obsolete ( "Use ZipStrings.ConvertToStringExt instead" ) ]
494494 public static string ConvertToStringExt ( int flags , byte [ ] data , int count )
495495 => ZipStrings . ConvertToStringExt ( flags , data , count ) ;
496496
497- /// <summary> Depracated wrapper for <see cref="ZipStrings.ConvertToStringExt(int, byte[])"/></summary>
497+ /// <summary> Deprecated wrapper for <see cref="ZipStrings.ConvertToStringExt(int, byte[])"/></summary>
498498 [ Obsolete ( "Use ZipStrings.ConvertToStringExt instead" ) ]
499499 public static string ConvertToStringExt ( int flags , byte [ ] data )
500500 => ZipStrings . ConvertToStringExt ( flags , data ) ;
501501
502- /// <summary> Depracated wrapper for <see cref="ZipStrings.ConvertToArray(string)"/></summary>
502+ /// <summary> Deprecated wrapper for <see cref="ZipStrings.ConvertToArray(string)"/></summary>
503503 [ Obsolete ( "Use ZipStrings.ConvertToArray instead" ) ]
504504 public static byte [ ] ConvertToArray ( string str )
505505 => ZipStrings . ConvertToArray ( str ) ;
506506
507- /// <summary> Depracated wrapper for <see cref="ZipStrings.ConvertToArray(int, string)"/></summary>
507+ /// <summary> Deprecated wrapper for <see cref="ZipStrings.ConvertToArray(int, string)"/></summary>
508508 [ Obsolete ( "Use ZipStrings.ConvertToArray instead" ) ]
509509 public static byte [ ] ConvertToArray ( int flags , string str )
510510 => ZipStrings . ConvertToArray ( flags , str ) ;
0 commit comments