-
Notifications
You must be signed in to change notification settings - Fork 14k
Closed
Description
The libuuid documentation (and henceforth the source code itself) mixes up string and str in method signatures, specifically the name of the method itself.
Proposed changes:
fn to_simple_str(&self) -> String=>fn to_simple_string(&self) -> Stringfn to_hyphenated_str(&self) -> String=>fn to_hyphenated_string(&self) -> Stringfn to_urn_str(&self) -> String=>fn to_urn_string(&self) -> Stringfn parse_string(us: &str) -> Result<Uuid, ParseError>=>fn parse_str(us: &str) -> Result<Uuid, ParseError>
Metadata
Metadata
Assignees
Labels
No labels