s/nonehi/hires/g

This commit is contained in:
nick black 2021-02-26 01:52:44 -05:00 committed by Nick Black
parent df65b43e49
commit 40746e76e6
3 changed files with 3 additions and 3 deletions

View File

@ -2897,7 +2897,7 @@ typedef enum {
NCSCALE_STRETCH,
} ncscale_e;
// Lex a scaling mode (one of "none", "stretch", "scale", "nonehi", or "scalehi").
// Lex a scaling mode (one of "none", "stretch", "scale", "hires", or "scalehi").
int notcurses_lex_scalemode(const char* op, ncscale_e* scalemode);
// Get the name of a scaling mode.

View File

@ -32,7 +32,7 @@ be any non-negative number.
**-s** ***scalemode***: Scaling mode, one of **none**, **hires**, **scale**, **scalehi**, or **stretch**.
**-b** ***blitter***: Blitter, one of **ascii**, **halfblocks**, **quadblitter**,
**sexblitter**, or **braille**.
**sexblitter**, **braille**, or **pixel**.
**-m margins**: Define rendering margins (see below).

View File

@ -891,7 +891,7 @@ API int notcurses_lex_blitter(const char* op, ncblitter_e* blitter);
// Get the name of a blitter.
API const char* notcurses_str_blitter(ncblitter_e blitter);
// Lex a scaling mode (one of "none", "stretch", "scale", "nonehi", or "scalehi").
// Lex a scaling mode (one of "none", "stretch", "scale", "hires", or "scalehi").
API int notcurses_lex_scalemode(const char* op, ncscale_e* scalemode);
// Get the name of a scaling mode.