diff --git a/contrib/ada/readme.txt b/contrib/ada/readme.txt index ce4d2cadf..7f4209072 100644 --- a/contrib/ada/readme.txt +++ b/contrib/ada/readme.txt @@ -8,7 +8,7 @@ It provides Ada-style access to the ZLib C library. Here are the main changes since ZLib.Ada 1.2: -- Attension: ZLib.Read generic routine have a initialization requirement +- Attention: ZLib.Read generic routine have a initialization requirement for Read_Last parameter now. It is a bit incompartible with previous version, but extends functionality, we could use new parameters Allow_Read_Some and Flush now. diff --git a/contrib/ada/zlib-streams.ads b/contrib/ada/zlib-streams.ads index 8e26cd450..af136933e 100644 --- a/contrib/ada/zlib-streams.ads +++ b/contrib/ada/zlib-streams.ads @@ -62,7 +62,7 @@ package ZLib.Streams is := Default_Buffer_Size; Write_Buffer_Size : in Ada.Streams.Stream_Element_Offset := Default_Buffer_Size); - -- Create the Comression/Decompression stream. + -- Create the Compression/Decompression stream. -- If mode is In_Stream then Write operation is disabled. -- If mode is Out_Stream then Read operation is disabled. diff --git a/contrib/ada/zlib.adb b/contrib/ada/zlib.adb index 8b6fd686a..c1abe791d 100644 --- a/contrib/ada/zlib.adb +++ b/contrib/ada/zlib.adb @@ -204,7 +204,7 @@ package body ZLib is end if; -- We allow ZLib to make header only in case of default header type. - -- Otherwise we would either do header by ourselfs, or do not do + -- Otherwise we would either do header by ourselves, or do not do -- header at all. if Header = None or else Header = GZip then diff --git a/contrib/ada/zlib.ads b/contrib/ada/zlib.ads index 79ffc4095..81aaf1b6a 100644 --- a/contrib/ada/zlib.ads +++ b/contrib/ada/zlib.ads @@ -114,7 +114,7 @@ package ZLib is -- Compression strategy constants -- ------------------------------------ - -- RLE stategy could be used only in version 1.2.0 and later. + -- RLE strategy could be used only in version 1.2.0 and later. Filtered : constant Strategy_Type; Huffman_Only : constant Strategy_Type;