Skip to content

Commit

Permalink
Typo fixes: "an"->"and" & "tex" -> "text" (#432)
Browse files Browse the repository at this point in the history
  • Loading branch information
follower authored Jun 12, 2021
1 parent ef36cac commit 60fd709
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions epi/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -348,7 +348,7 @@ impl Storage for DummyStorage {
fn flush(&mut self) {}
}

/// Get an deserialize the [RON](https://github.com/ron-rs/ron) stored at the given key.
/// Get and deserialize the [RON](https://github.com/ron-rs/ron) stored at the given key.
#[cfg(feature = "ron")]
pub fn get_value<T: serde::de::DeserializeOwned>(storage: &dyn Storage, key: &str) -> Option<T> {
storage
Expand Down Expand Up @@ -415,7 +415,7 @@ pub mod http {
pub ok: bool,
/// Status code (e.g. `404` for "File not found").
pub status: u16,
/// Status tex (e.g. "File not found" for status code `404`).
/// Status text (e.g. "File not found" for status code `404`).
pub status_text: String,

/// Content-Type header, or empty string if missing.
Expand Down

0 comments on commit 60fd709

Please sign in to comment.