mirror of
https://github.com/curl/curl.git
synced 2026-07-31 14:58:02 +03:00
source: avoid use of 'very' in comments
This commit is contained in:
parent
d1323839be
commit
9cc246401e
16 changed files with 64 additions and 67 deletions
|
|
@ -39,7 +39,7 @@
|
|||
|
||||
/*
|
||||
* get_terminal_columns() returns the number of columns in the current
|
||||
* terminal. It will return 79 on failure. Also, the number can be very big.
|
||||
* terminal. It will return 79 on failure. Also, the number can be big.
|
||||
*/
|
||||
|
||||
unsigned int get_terminal_columns(void)
|
||||
|
|
@ -87,5 +87,5 @@ unsigned int get_terminal_columns(void)
|
|||
}
|
||||
if(!width)
|
||||
width = 79;
|
||||
return width; /* 79 for unknown, might also be very small or very big */
|
||||
return width; /* 79 for unknown, might also be tiny or enormous */
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue