diff --git a/parsers/src/bind2.rs b/parsers/src/bind2.rs index dd2a6b2d..be4bc9ca 100644 --- a/parsers/src/bind2.rs +++ b/parsers/src/bind2.rs @@ -132,7 +132,7 @@ impl From for Element { /// requests. #[derive(Debug, Clone, PartialEq)] pub struct Bound { - /// Indicates which messages got missed by this particuliar device, start is the oldest message + /// Indicates which messages got missed by this particular device, start is the oldest message /// and end is the newest, before this connection. pub mam_metadata: Option, diff --git a/parsers/src/lib.rs b/parsers/src/lib.rs index ac232538..2c89a909 100644 --- a/parsers/src/lib.rs +++ b/parsers/src/lib.rs @@ -4,7 +4,7 @@ //! minidom [`Element`] and returns a `Result` whose value is `Ok` if the //! element parsed correctly, `Err(error::Error)` otherwise. //! -//! The returned structure can be manipuled as any Rust structure, with each +//! The returned structure can be manipulated as any Rust structure, with each //! field being public. You can also create the same structure manually, with //! some having `new()` and `with_*()` helper methods to create them. //! diff --git a/parsers/src/oob.rs b/parsers/src/oob.rs index a13b011a..9c0d0d22 100644 --- a/parsers/src/oob.rs +++ b/parsers/src/oob.rs @@ -12,7 +12,8 @@ generate_element!( children: [ /// The associated URL. url: Required = ("url", OOB) => String, - /// An optionnal description of the out of band data. + + /// An optional description of the out of band data. desc: Option = ("desc", OOB) => String, ] );