Skip to content

Commit d83675f

Browse files
committed
"singed" --> "signed" (3 places)
Noticed by Andrew MacIntyre <andymac@bullseye.apana.org.au>.
1 parent 9c1201f commit d83675f

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

Doc/lib/libfuncs.tex

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -230,7 +230,7 @@ \section{Built-in Functions \label{built-in-funcs}}
230230

231231
\begin{funcdesc}{float}{x}
232232
Convert a string or a number to floating point. If the argument is a
233-
string, it must contain a possibly singed decimal or floating point
233+
string, it must contain a possibly signed decimal or floating point
234234
number, possibly embedded in whitespace;
235235
this behaves identical to \code{string.atof(\var{x})}.
236236
Otherwise, the argument may be a plain or
@@ -305,7 +305,7 @@ \section{Built-in Functions \label{built-in-funcs}}
305305

306306
\begin{funcdesc}{int}{x}
307307
Convert a string or number to a plain integer. If the argument is a
308-
string, it must contain a possibly singed decimal number
308+
string, it must contain a possibly signed decimal number
309309
representable as a Python integer, possibly embedded in whitespace;
310310
this behaves identical to \code{string.atoi(\var{x})}.
311311
Otherwise, the argument may be a plain or
@@ -355,7 +355,7 @@ \section{Built-in Functions \label{built-in-funcs}}
355355

356356
\begin{funcdesc}{long}{x}
357357
Convert a string or number to a long integer. If the argument is a
358-
string, it must contain a possibly singed decimal number of
358+
string, it must contain a possibly signed decimal number of
359359
arbitrary size, possibly embedded in whitespace;
360360
this behaves identical to \code{string.atol(\var{x})}.
361361
Otherwise, the argument may be a plain or

0 commit comments

Comments
 (0)