about summary refs log tree commit diff
diff options
context:
space:
mode:
authorMatt Brubeck <mbrubeck@limpet.net>2016-03-30 16:59:38 -0700
committerMatt Brubeck <mbrubeck@limpet.net>2016-03-30 16:59:38 -0700
commitd93fb02a5eb84874db012bb216982932029633f7 (patch)
treec5d7433453b43ad97f5c2c87678e11ff73c128b7
parentbfacabc6a2b59771aa336ff420c363d9695a6ad2 (diff)
Update Rust version in the Rustonomicon Vec chapter
I verified that the final code compiles in Rust 1.9.0-nightly.
-rw-r--r--src/doc/nomicon/vec.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/doc/nomicon/vec.md b/src/doc/nomicon/vec.md
index 63f83788c4b..691301946de 100644
--- a/src/doc/nomicon/vec.md
+++ b/src/doc/nomicon/vec.md
@@ -2,7 +2,7 @@
 
 To bring everything together, we're going to write `std::Vec` from scratch.
 Because all the best tools for writing unsafe code are unstable, this
-project will only work on nightly (as of Rust 1.2.0). With the exception of the
+project will only work on nightly (as of Rust 1.9.0). With the exception of the
 allocator API, much of the unstable code we'll use is expected to be stabilized
 in a similar form as it is today.