From 7150d3cd9e011367f3c6fb6ff8d1e4c0f7a26e95 Mon Sep 17 00:00:00 2001 From: Ben Gesoff Date: Thu, 7 May 2015 14:23:05 +0100 Subject: [PATCH] Change rand version to '*' Following paragraph says "we've used `*` which..." but code says "rand=\"0.3.0\"" --- src/doc/trpl/guessing-game.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/doc/trpl/guessing-game.md b/src/doc/trpl/guessing-game.md index 6b58f7dfde81..6f8798adaca1 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: