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

@ -348,9 +348,9 @@ curl_easy_strerror(CURLcode error)
* By using gcc -Wall -Werror, you cannot forget.
*
* A table would not have the same benefit. Most compilers will generate
* code very similar to a table in any case, so there is little performance
* gain from a table. Something is broken for the user's application,
* anyways, so does it matter how fast it _does not_ work?
* code similar to a table in any case, so there is little performance gain
* from a table. Something is broken for the user's application, anyways, so
* does it matter how fast it _does not_ work?
*
* The line number for the error will be near this comment, which is why it
* is here, and not at the start of the switch.