Standardise the casing of “full JID” and “bare JID”.

This commit is contained in:
Emmanuel Gil Peyrot 2019-06-10 22:54:52 +02:00
commit b12487a5b1

View file

@ -70,9 +70,9 @@ impl From<Jid> for String {
} }
} }
/// A struct representing a Full Jabber ID. /// A struct representing a full Jabber ID.
/// ///
/// A Full Jabber ID is composed of 3 components, of which one is optional: /// A full Jabber ID is composed of 3 components, of which one is optional:
/// ///
/// - A node/name, `node`, which is the optional part before the @. /// - A node/name, `node`, which is the optional part before the @.
/// - A domain, `domain`, which is the mandatory part after the @ but before the /. /// - A domain, `domain`, which is the mandatory part after the @ but before the /.
@ -87,9 +87,9 @@ pub struct FullJid {
pub resource: String, pub resource: String,
} }
/// A struct representing a Bare Jabber ID. /// A struct representing a bare Jabber ID.
/// ///
/// A Bare Jabber ID is composed of 2 components, of which one is optional: /// A bare Jabber ID is composed of 2 components, of which one is optional:
/// ///
/// - A node/name, `node`, which is the optional part before the @. /// - A node/name, `node`, which is the optional part before the @.
/// - A domain, `domain`, which is the mandatory part after the @ but before the /. /// - A domain, `domain`, which is the mandatory part after the @ but before the /.
@ -252,7 +252,7 @@ impl FromStr for FullJid {
} }
impl FullJid { impl FullJid {
/// Constructs a Full Jabber ID containing all three components. /// Constructs a full Jabber ID containing all three components.
/// ///
/// This is of the form `node`@`domain`/`resource`. /// This is of the form `node`@`domain`/`resource`.
/// ///
@ -332,7 +332,7 @@ impl FullJid {
} }
} }
/// Constructs a Full Jabber ID from a Bare Jabber ID, specifying a `resource`. /// Constructs a full Jabber ID from a bare Jabber ID, specifying a `resource`.
/// ///
/// # Examples /// # Examples
/// ///
@ -372,7 +372,7 @@ impl FromStr for BareJid {
} }
impl BareJid { impl BareJid {
/// Constructs a Bare Jabber ID, containing two components. /// Constructs a bare Jabber ID, containing two components.
/// ///
/// This is of the form `node`@`domain`. /// This is of the form `node`@`domain`.
/// ///
@ -397,7 +397,7 @@ impl BareJid {
} }
} }
/// Constructs a Bare Jabber ID containing only a `domain`. /// Constructs a bare Jabber ID containing only a `domain`.
/// ///
/// This is of the form `domain`. /// This is of the form `domain`.
/// ///
@ -471,7 +471,7 @@ impl BareJid {
} }
} }
/// Constructs a Full Jabber ID from a Bare Jabber ID, specifying a `resource`. /// Constructs a full Jabber ID from a bare Jabber ID, specifying a `resource`.
/// ///
/// # Examples /// # Examples
/// ///