Skip to content

Commit a8e6f75

Browse files
authored
Merge pull request #1081 from fritzrehde/master
Fixed some typos
2 parents f56053d + ebaf617 commit a8e6f75

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/read.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ pub trait Read<'de>: private::Sealed {
8181
#[doc(hidden)]
8282
fn ignore_str(&mut self) -> Result<()>;
8383

84-
/// Assumes the previous byte was a hex escape sequnce ('\u') in a string.
84+
/// Assumes the previous byte was a hex escape sequence ('\u') in a string.
8585
/// Parses next hexadecimal sequence.
8686
#[doc(hidden)]
8787
fn decode_hex_escape(&mut self) -> Result<u16>;

src/value/from.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -198,7 +198,7 @@ impl<T: Clone + Into<Value>> From<&[T]> for Value {
198198
}
199199

200200
impl<T: Into<Value>> FromIterator<T> for Value {
201-
/// Convert an iteratable type to a `Value`
201+
/// Convert an iterable type to a `Value`
202202
///
203203
/// # Examples
204204
///
@@ -228,7 +228,7 @@ impl<T: Into<Value>> FromIterator<T> for Value {
228228
}
229229

230230
impl<K: Into<String>, V: Into<Value>> FromIterator<(K, V)> for Value {
231-
/// Convert an iteratable type to a `Value`
231+
/// Convert an iterable type to a `Value`
232232
///
233233
/// # Examples
234234
///

0 commit comments

Comments
 (0)