source: avoid use of 'very' in comments

This commit is contained in:
Daniel Stenberg 2024-10-17 09:51:26 +02:00
parent d1323839be
commit 9cc246401e
No known key found for this signature in database
GPG key ID: 5CC908FDB71E12C2
16 changed files with 64 additions and 67 deletions

View file

@ -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 */
}