From 60fd70921df538c5cfab9918ddac1a2df5a06c66 Mon Sep 17 00:00:00 2001 From: follower Date: Sun, 13 Jun 2021 08:17:57 +1200 Subject: [PATCH] Typo fixes: "an"->"and" & "tex" -> "text" (#432) --- epi/src/lib.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/epi/src/lib.rs b/epi/src/lib.rs index a63fbace..209e0b37 100644 --- a/epi/src/lib.rs +++ b/epi/src/lib.rs @@ -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(storage: &dyn Storage, key: &str) -> Option { storage @@ -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.