@@ -257,7 +257,7 @@ The module :mod:`!curses` defines the following functions:
257257
258258 Return ``True `` if the module supports extended colors; otherwise, return
259259 ``False ``. Extended color support allows more than 256 color pairs for
260- terminals that support more than 16 colors (e.g. xterm-256color).
260+ terminals that support more than 16 colors (for example, xterm-256color).
261261
262262 Extended color support requires ncurses version 6.1 or later.
263263
@@ -646,7 +646,7 @@ The module :mod:`!curses` defines the following functions:
646646.. function :: tparm(str[, ...])
647647
648648 Instantiate the bytes object *str * with the supplied parameters, where *str * should
649- be a parameterized string obtained from the terminfo database. E.g.
649+ be a parameterized string obtained from the terminfo database. For example,
650650 ``tparm(tigetstr("cup"), 5, 3) `` could result in ``b'\033[6;4H' ``, the exact
651651 result depending on terminal type. Up to nine integer parameters may be supplied.
652652
@@ -1415,14 +1415,14 @@ The :mod:`!curses` module defines the following data members:
14151415
14161416.. data :: COLS
14171417
1418- The width of the screen, i.e. , the number of columns.
1418+ The width of the screen, that is , the number of columns.
14191419 It is defined only after the call to :func: `initscr `.
14201420 Updated by :func: `update_lines_cols `, :func: `resizeterm ` and
14211421 :func: `resize_term `.
14221422
14231423.. data :: LINES
14241424
1425- The height of the screen, i.e. , the number of lines.
1425+ The height of the screen, that is , the number of lines.
14261426 It is defined only after the call to :func: `initscr `.
14271427 Updated by :func: `update_lines_cols `, :func: `resizeterm ` and
14281428 :func: `resize_term `.
0 commit comments