From 78c52610a0133c1eb8f82e6b5f203aeca1d9c791 Mon Sep 17 00:00:00 2001 From: John Vandenberg Date: Wed, 24 Jan 2024 05:13:11 +0800 Subject: [PATCH] Fix typos --- CHANGELOG.md | 2 +- CONTRIBUTING.md | 2 +- src/lib.rs | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9c9e371..ce389f6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 0146eb2..6a64e7d 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -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. diff --git a/src/lib.rs b/src/lib.rs index fd59d0a..c1e5cff 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -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::() { /// Ok(config) => println!("{:#?}", config), /// Err(error) => eprintln!("{:#?}", error),