Skip to content

Commit

Permalink
Fix typos (#39)
Browse files Browse the repository at this point in the history
  • Loading branch information
jayvdb authored May 12, 2024
1 parent 4aa5b31 commit 62eef7c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
//! serde-env will allow deserializing env into structs.
//!
//! The biggest different between [envy](https://github.com/softprops/envy) is
//! serde-env supports deserialize `_` seperated env into nests structs. That means
//! we will treat env as `_` seperated tree instead of a flat map.
//! serde-env supports deserialize `_` separated env into nests structs. That means
//! we will treat env as `_` separated tree instead of a flat map.
//!
//! For examples:
//!
Expand Down
2 changes: 1 addition & 1 deletion src/value.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ use crate::cond_log::trace;

/// Node represents a tree of env values.
///
/// Every env will be seperated by `_` in key to construct this tree.
/// Every env will be separated by `_` in key to construct this tree.
///
/// - `ABC=123` => `Node("123", {})`
/// - `ABC_DEF=123` => `Node("", { "DEF": Node("123", {}) })`
Expand Down

0 comments on commit 62eef7c

Please sign in to comment.