Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/pr/2447'
Browse files Browse the repository at this point in the history
  • Loading branch information
carols10cents committed Dec 19, 2020
2 parents d7b29fa + 20e7120 commit 77e1f2a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/ch02-00-guessing-game-tutorial.md
Original file line number Diff line number Diff line change
Expand Up @@ -362,8 +362,8 @@ versions of those crates you require. In this case, we’ll specify the `rand`
crate with the semantic version specifier `0.5.5`. Cargo understands [Semantic
Versioning][semver]<!-- ignore --> (sometimes called *SemVer*), which is a
standard for writing version numbers. The number `0.5.5` is actually shorthand
for `^0.5.5`, which means any version that has a public API compatible with
version 0.5.5.
for `^0.5.5`, which means any version that is at least `0.5.5`, but below `0.6.0`.
These versions are public API compatible with version 0.5.5.

[semver]: http://semver.org

Expand Down

0 comments on commit 77e1f2a

Please sign in to comment.