Skip to content

Commit

Permalink
Merge pull request #73 from jayvdb/typos
Browse files Browse the repository at this point in the history
Fix typos
  • Loading branch information
softprops authored Jun 7, 2024
2 parents e22035c + 78c5261 commit 4f57b2d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

* update `from_iter(..)` to accept `std::iter::IntoIterator` types

This is a backwards compatible change because all Iterators have a [provided impl for IntoInterator](https://doc.rust-lang.org/src/core/iter/traits.rs.html#255-262) by default.
This is a backwards compatible change because all Iterators have a [provided impl for IntoIterator](https://doc.rust-lang.org/src/core/iter/traits.rs.html#255-262) by default.

# 0.3.2

Expand Down
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ cargo +nightly fmt
[rustfmt]: https://github.com/rust-lang-nursery/rustfmt

### IDE Configuration files
Machine specific configuration files may be generaged by your IDE while working on the project. Please make sure to add these files to a global .gitignore so they are kept from accidentally being commited to the project and causing issues for other contributors.
Machine specific configuration files may be generated by your IDE while working on the project. Please make sure to add these files to a global .gitignore so they are kept from accidentally being committed to the project and causing issues for other contributors.

Some examples of these files are the `.idea` folder created by JetBrains products (WebStorm, IntelliJ, etc) as well as `.vscode` created by Visual Studio Code for workspace specific settings.

Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -367,7 +367,7 @@ impl<'a> Prefixed<'a> {
/// }
///
/// // all env variables will be expected to be prefixed with APP_
/// // i.e. APP_FOO, APP_BAR, ect
/// // i.e. APP_FOO, APP_BAR, etc
/// match envy::prefixed("APP_").from_env::<Config>() {
/// Ok(config) => println!("{:#?}", config),
/// Err(error) => eprintln!("{:#?}", error),
Expand Down

0 comments on commit 4f57b2d

Please sign in to comment.