This commit is contained in:
Nikolay Volf 2016-02-17 03:17:02 +03:00
parent 4a028f5faf
commit d63f13245f
1 changed files with 3 additions and 3 deletions

View File

@ -16,13 +16,13 @@
//! Semantic version formatting and comparing.
/// A version value with strict meaning. Use `to_u32` to convert to a simple integer.
///
/// A version value with strict meaning. Use `as_u32` to convert to a simple integer.
///
/// # Example
/// ```
/// extern crate ethcore_util as util;
/// use util::semantic_version::*;
///
///
/// fn main() {
/// assert_eq!(SemanticVersion::new(1, 2, 3).as_u32(), 0x010203);
/// }