Skip to content

Commit bc269d6

Browse files
authored
Merge pull request #920 from rzmk/patch-1
docs: fix typo "crates" -> "creates"
2 parents 646ce4b + fa4f3dc commit bc269d6

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ loop {
7979
match reader.read_event() {
8080
Ok(Event::Start(e)) if e.name().as_ref() == b"this_tag" => {
8181

82-
// crates a new element ... alternatively we could reuse `e` by calling
82+
// creates a new element ... alternatively we could reuse `e` by calling
8383
// `e.into_owned()`
8484
let mut elem = BytesStart::new("my_elem");
8585

src/writer.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ use {crate::se::SeError, serde::Serialize};
3131
/// match reader.read_event() {
3232
/// Ok(Event::Start(e)) if e.name().as_ref() == b"this_tag" => {
3333
///
34-
/// // crates a new element ... alternatively we could reuse `e` by calling
34+
/// // creates a new element ... alternatively we could reuse `e` by calling
3535
/// // `e.into_owned()`
3636
/// let mut elem = BytesStart::new("my_elem");
3737
///

0 commit comments

Comments
 (0)