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

Skip to content

Commit fffe5db

Browse files
committed
Fixed a number of small problems reported by Detlef Lannert
<[email protected]>.
1 parent f585574 commit fffe5db

3 files changed

Lines changed: 8 additions & 9 deletions

File tree

Doc/lib/libstdtypes.tex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -327,7 +327,7 @@ \subsection{Sequence Types \label{typesseq}}
327327
or without enclosing parentheses, but an empty tuple must have the
328328
enclosing parentheses, e.g., \code{a, b, c} or \code{()}. A single
329329
item tuple must have a trailing comma, e.g., \code{(d,)}. Buffers are
330-
not directly support by Python syntax, but can created by calling the
330+
not directly supported by Python syntax, but can be created by calling the
331331
builtin function \function{buffer()}.\bifuncindex{buffer} XRanges
332332
objects are similar to buffers in that there is no specific syntax to
333333
create them, but they are created using the \function{xrange()}

Doc/lib/libstring.tex

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -91,12 +91,11 @@ \section{\module{string} ---
9191
is 0, a default base is chosen depending on the leading characters
9292
of the string (after stripping the sign): \samp{0x} or \samp{0X}
9393
means 16, \samp{0} means 8, anything else means 10. If \var{base}
94-
is 16, a leading \samp{0x} or \samp{0X} is always accepted. Note
95-
that when invoked without \var{base} or with \var{base} set to 10,
96-
this behaves identical to the built-in function \function{int()}
97-
when passed a string. (Also note: for a more flexible
98-
interpretation of numeric literals, use the built-in function
99-
\function{eval()}\bifuncindex{eval}.)
94+
is 16, a leading \samp{0x} or \samp{0X} is always accepted, though
95+
not required. This behaves identically to the built-in function
96+
\function{int()} when passed a string. (Also note: for a more
97+
flexible interpretation of numeric literals, use the built-in
98+
function \function{eval()}\bifuncindex{eval}.)
10099
\end{funcdesc}
101100

102101
\begin{funcdesc}{atol}{s\optional{, base}}

Doc/lib/libundoc.tex

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -166,8 +166,8 @@ \section{Obsolete \label{obsolete-modules}}
166166
\end{description}
167167

168168

169-
The following modules are obsolete, but are likely re-surface as tools
170-
or scripts.
169+
The following modules are obsolete, but are likely to re-surface as
170+
tools or scripts:
171171

172172
\begin{description}
173173
\item[\module{find}]

0 commit comments

Comments
 (0)