diff options
Diffstat (limited to '3rdparty/zlib/contrib/ada')
-rw-r--r-- | 3rdparty/zlib/contrib/ada/readme.txt | 4 | ||||
-rw-r--r-- | 3rdparty/zlib/contrib/ada/test.adb | 4 | ||||
-rw-r--r-- | 3rdparty/zlib/contrib/ada/zlib-streams.ads | 2 | ||||
-rw-r--r-- | 3rdparty/zlib/contrib/ada/zlib.adb | 2 | ||||
-rw-r--r-- | 3rdparty/zlib/contrib/ada/zlib.ads | 2 |
5 files changed, 7 insertions, 7 deletions
diff --git a/3rdparty/zlib/contrib/ada/readme.txt b/3rdparty/zlib/contrib/ada/readme.txt index ce4d2cadf0d..efdd639fba3 100644 --- a/3rdparty/zlib/contrib/ada/readme.txt +++ b/3rdparty/zlib/contrib/ada/readme.txt @@ -8,8 +8,8 @@ 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 - for Read_Last parameter now. It is a bit incompartible with previous version, +- Attention: ZLib.Read generic routine have a initialization requirement + for Read_Last parameter now. It is a bit incompatible with previous version, but extends functionality, we could use new parameters Allow_Read_Some and Flush now. diff --git a/3rdparty/zlib/contrib/ada/test.adb b/3rdparty/zlib/contrib/ada/test.adb index 90773acfa18..8b350315085 100644 --- a/3rdparty/zlib/contrib/ada/test.adb +++ b/3rdparty/zlib/contrib/ada/test.adb @@ -65,12 +65,12 @@ procedure Test is Time_Stamp : Ada.Calendar.Time; procedure Generate_File; - -- Generate file of spetsified size with some random data. + -- Generate file of specified size with some random data. -- The random data is repeatable, for the good compression. procedure Compare_Streams (Left, Right : in out Root_Stream_Type'Class); - -- The procedure compearing data in 2 streams. + -- The procedure comparing data in 2 streams. -- It is for compare data before and after compression/decompression. procedure Compare_Files (Left, Right : String); diff --git a/3rdparty/zlib/contrib/ada/zlib-streams.ads b/3rdparty/zlib/contrib/ada/zlib-streams.ads index 8e26cd45083..af136933e1d 100644 --- a/3rdparty/zlib/contrib/ada/zlib-streams.ads +++ b/3rdparty/zlib/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/3rdparty/zlib/contrib/ada/zlib.adb b/3rdparty/zlib/contrib/ada/zlib.adb index 8b6fd686ac7..c1abe791d61 100644 --- a/3rdparty/zlib/contrib/ada/zlib.adb +++ b/3rdparty/zlib/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/3rdparty/zlib/contrib/ada/zlib.ads b/3rdparty/zlib/contrib/ada/zlib.ads index 79ffc4095cf..81aaf1b6ae4 100644 --- a/3rdparty/zlib/contrib/ada/zlib.ads +++ b/3rdparty/zlib/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; |