Remove redundant words

This commit is contained in:
Menachem Adin 2023-06-16 00:15:10 +03:00
parent 21cf840842
commit eb0e86b49d
1 changed files with 1 additions and 1 deletions

View File

@ -113,7 +113,7 @@ function, as shown in Listing 12-22. This still wont compile yet.
Finally, we need to check for the environment variable. The functions for
working with environment variables are in the `env` module in the standard
library, so we bring that module into scope at the top of *src/lib.rs*. Then
well use the `var` function from the `env` module to check to see if any value
well use the `var` function from the `env` module to check if any value
has been set for an environment variable named `IGNORE_CASE`, as shown in
Listing 12-23.