diff options
author | Fred Drake <fdrake@acm.org> | 1999-07-02 14:29:14 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 1999-07-02 14:29:14 (GMT) |
commit | 82ac24ffb002292e9ea90f1687b8fbae1eaf6fde (patch) | |
tree | 6a119f716e5718fd47a077541feb73a3adff6295 /Doc/ext | |
parent | 0452007dccc079be508acedac4951b9893a34e78 (diff) | |
download | cpython-82ac24ffb002292e9ea90f1687b8fbae1eaf6fde.zip cpython-82ac24ffb002292e9ea90f1687b8fbae1eaf6fde.tar.gz cpython-82ac24ffb002292e9ea90f1687b8fbae1eaf6fde.tar.bz2 |
Minor markup nit.
Diffstat (limited to 'Doc/ext')
-rw-r--r-- | Doc/ext/ext.tex | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/ext/ext.tex b/Doc/ext/ext.tex index 33d6492..04ffcbf 100644 --- a/Doc/ext/ext.tex +++ b/Doc/ext/ext.tex @@ -694,7 +694,7 @@ second is the address of a C variable (of arbitrary type), converted to \ctype{void *}. The \var{converter} function in turn is called as follows: -\code{\var{status} = \var{converter}(\var{object}, \var{address});} +\var{status}\code{ = }\var{converter}\code{(}\var{object}, \var{address}\code{);} where \var{object} is the Python object to be converted and \var{address} is the \ctype{void *} argument that was passed to |