diff options
author | Fred Drake <fdrake@acm.org> | 2001-07-06 19:28:48 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 2001-07-06 19:28:48 (GMT) |
commit | 91f2f26d7515635453945325fb833bde13396f4c (patch) | |
tree | 3484a2c78ce9e2c337f39b58156a4aaaeba96843 /Doc/lib/libcurses.tex | |
parent | 6ee42348025611f537b80d5dbf55f4d5b9bd58f2 (diff) | |
download | cpython-91f2f26d7515635453945325fb833bde13396f4c.zip cpython-91f2f26d7515635453945325fb833bde13396f4c.tar.gz cpython-91f2f26d7515635453945325fb833bde13396f4c.tar.bz2 |
Fix up a few style nits -- avoid "e.g." and "i.e." -- these make
translation more difficult, as well as reading the English more
difficult for non-native speakers.
Diffstat (limited to 'Doc/lib/libcurses.tex')
-rw-r--r-- | Doc/lib/libcurses.tex | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/lib/libcurses.tex b/Doc/lib/libcurses.tex index bbb86a0..ebe78a5 100644 --- a/Doc/lib/libcurses.tex +++ b/Doc/lib/libcurses.tex @@ -331,7 +331,7 @@ A pad is like a window, except that it is not restricted by the screen size, and is not necessarily associated with a particular part of the screen. Pads can be used when a large window is needed, and only a part of the window will be on the screen at one time. Automatic -refreshes of pads (e.g., from scrolling or echoing of input) do not +refreshes of pads (such as from scrolling or echoing of input) do not occur. The \method{refresh()} and \method{noutrefresh()} methods of a pad require 6 arguments to specify the part of the pad to be displayed and the location on the screen to be used for the display. @@ -542,7 +542,7 @@ Window objects, as returned by \function{initscr()} and following methods: \begin{methoddesc}{addch}{\optional{y, x,} ch\optional{, attr}} -\strong{Note:} A \emph{character} means a C character (i.e., an +\strong{Note:} A \emph{character} means a C character (an \ASCII{} code), rather then a Python character (a string of length 1). (This note is true whenever the documentation mentions a character.) The builtin \function{ord()} is handy for conveying strings to codes. |