about summary refs log tree commit diff
diff options
context:
space:
mode:
authorBen Gesoff <ben.gesoff@gmail.com>2015-05-07 14:23:05 +0100
committerBen Gesoff <ben.gesoff@gmail.com>2015-05-07 14:23:05 +0100
commit7150d3cd9e011367f3c6fb6ff8d1e4c0f7a26e95 (patch)
tree237edad7f1017ee6e4cf0da2c046751706da6cdf
parentacb3aa0949f846ee315568e34d5796fb746c07e8 (diff)
downloadrust-7150d3cd9e011367f3c6fb6ff8d1e4c0f7a26e95.tar.gz
rust-7150d3cd9e011367f3c6fb6ff8d1e4c0f7a26e95.zip
Change rand version to '*'
Following paragraph says "we've used `*` which..." but code says "rand=\"0.3.0\""
-rw-r--r--src/doc/trpl/guessing-game.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/doc/trpl/guessing-game.md b/src/doc/trpl/guessing-game.md
index 6b58f7dfde8..6f8798adaca 100644
--- a/src/doc/trpl/guessing-game.md
+++ b/src/doc/trpl/guessing-game.md
@@ -352,7 +352,7 @@ add these few lines at the bottom:
 ```toml
 [dependencies]
 
-rand="0.3.0"
+rand="*"
 ```
 
 The `[dependencies]` section of `Cargo.toml` is like the `[package]` section: