Skip to content

Commit 50b0f5c

Browse files
committed
Merge pull request #20895 from adregan/master
Updates fixed-size suffix in 30 minute introduction Reviewed-by: steveklabnik
2 parents 654877c + c871773 commit 50b0f5c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/doc/intro.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -106,9 +106,9 @@ use semver::Version;
106106
107107
fn main() {
108108
assert!(Version::parse("1.2.3") == Ok(Version {
109-
major: 1u,
110-
minor: 2u,
111-
patch: 3u,
109+
major: 1u64,
110+
minor: 2u64,
111+
patch: 3u64,
112112
pre: vec!(),
113113
build: vec!(),
114114
}));

0 commit comments

Comments
 (0)