@@ -17,7 +17,7 @@ identifiers to entities without requiring a central allocating authority.
1717
1818They are particularly useful in distributed systems, though can be used in
1919disparate areas, such as databases and network protocols. Typically a UUID is
20- displayed in a readable string form as a sequence of hexadecimals digits,
20+ displayed in a readable string form as a sequence of hexadecimal digits,
2121separated into groups by hyphens.
2222
2323The uniqueness property is not strictly guaranteed, however for all practical
@@ -89,11 +89,11 @@ pub enum UuidVersion {
8989/// The reserved variants of UUIDs
9090#[ deriving( Eq ) ]
9191pub enum UuidVariant {
92- /// Reserved by the NCS for backward compatability
92+ /// Reserved by the NCS for backward compatibility
9393 VariantNCS ,
9494 /// As described in the RFC4122 Specification (default)
9595 VariantRFC4122 ,
96- /// Resreved by Microsoft for backward compatability
96+ /// Reserved by Microsoft for backward compatibility
9797 VariantMicrosoft ,
9898 /// Reserved for future expansion
9999 VariantFuture ,
@@ -313,7 +313,7 @@ impl Uuid {
313313 str:: from_utf8_owned ( s)
314314 }
315315
316- /// Returns a string of hexadecimal digits, separated into groups with a hypen
316+ /// Returns a string of hexadecimal digits, separated into groups with a hyphen.
317317 ///
318318 /// Example: `550e8400-e29b-41d4-a716-446655440000`
319319 pub fn to_hyphenated_str ( & self ) -> ~str {
0 commit comments