@@ -1336,8 +1336,8 @@ drop_suffix = |haystack, suffix|
1336
1336
## expect "CAFÉ".with_ascii_lowercased() == "cafÉ"
1337
1337
## ```
1338
1338
##
1339
- ## This function is useful for things like [command-line options ](https://en.wikipedia.org/wiki/Command-line_interface#Command-line_option)
1340
- ## and [environment variables ](https://en.wikipedia.org/wiki/Environment_variable)
1339
+ ## This function is useful for things like [command-line flags ](https://en.wikipedia.org/wiki/Command-line_interface#Command-line_option)
1340
+ ## and [environment variable names ](https://en.wikipedia.org/wiki/Environment_variable)
1341
1341
## where you know in advance that you're dealing with a string containing only ASCII characters.
1342
1342
## It has better performance than lowercasing operations which take Unicode into account.
1343
1343
##
@@ -1363,8 +1363,8 @@ expect Str.with_ascii_lowercased("CAFÉ") == "cafÉ"
1363
1363
## ```
1364
1364
##
1365
1365
## This function is useful for things like
1366
- ## [command-line options ](https://en.wikipedia.org/wiki/Command-line_interface#Command-line_option)
1367
- ## and [environment variables ](https://en.wikipedia.org/wiki/Environment_variable)
1366
+ ## [command-line flags ](https://en.wikipedia.org/wiki/Command-line_interface#Command-line_option)
1367
+ ## and [environment variable names ](https://en.wikipedia.org/wiki/Environment_variable)
1368
1368
## where you know in advance that you're dealing with a string containing only ASCII characters.
1369
1369
## It has better performance than lowercasing operations which take Unicode into account.
1370
1370
##
@@ -1399,8 +1399,8 @@ expect Str.with_ascii_uppercased("café") == "CAFé"
1399
1399
## (`é`) is the same in both strings. The second call returns `False`because
1400
1400
## `é` and `É` are not ASCII characters, and they are different.
1401
1401
##
1402
- ## This function is useful for things like [command-line options ](https://en.wikipedia.org/wiki/Command-line_interface#Command-line_option)
1403
- ## and [environment variables ](https://en.wikipedia.org/wiki/Environment_variable)
1402
+ ## This function is useful for things like [command-line flags ](https://en.wikipedia.org/wiki/Command-line_interface#Command-line_option)
1403
+ ## and [environment variable names ](https://en.wikipedia.org/wiki/Environment_variable)
1404
1404
## where you know in advance that you're dealing with a string containing only ASCII characters.
1405
1405
## It has better performance than lowercasing operations which take Unicode into account.
1406
1406
##
0 commit comments