Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 110aa50

Browse files
committed
Fix minor wording and 2 typos
1 parent 40b11b8 commit 110aa50

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

Doc/lib/libbz2.tex

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ \section{\module{bz2} ---
2323
\item \class{BZ2File} class implements universal newline support;
2424
\item \class{BZ2File} class offers an optimized line iteration using
2525
the readahead algorithm borrowed from file objects;
26-
\item \class{BZ2File} class developed inheriting builtin file type
26+
\item \class{BZ2File} class inherits from the builtin file type
2727
(\code{issubclass(BZ2File, file)} is \code{True});
2828
\item Sequential (de)compression supported by \class{BZ2Compressor} and
2929
\class{BZ2Decompressor} classes;
@@ -87,7 +87,7 @@ \subsection{(De)compression of files}
8787
\end{methoddesc}
8888

8989
\begin{methoddesc}[BZ2File]{\_\_iter\_\_}{}
90-
Iterate trough the file lines. Iteration optimization is implemented
90+
Iterate through the file lines. Iteration optimization is implemented
9191
using the same readahead algorithm available in \class{file} objects.
9292
\end{methoddesc}
9393

@@ -161,7 +161,7 @@ \subsection{Sequential (de)compression}
161161

162162
\subsection{One-shot (de)compression}
163163

164-
One-shot compression and decompression is provided trough the
164+
One-shot compression and decompression is provided through the
165165
\function{compress()} and \function{decompress()} functions.
166166

167167
\begin{funcdesc}{compress}{data\optional{, compresslevel}}

0 commit comments

Comments
 (0)