]> git.lizzy.rs Git - rust.git/commitdiff
Update Rust version in the Rustonomicon Vec chapter
authorMatt Brubeck <mbrubeck@limpet.net>
Wed, 30 Mar 2016 23:59:38 +0000 (16:59 -0700)
committerMatt Brubeck <mbrubeck@limpet.net>
Wed, 30 Mar 2016 23:59:38 +0000 (16:59 -0700)
I verified that the final code compiles in Rust 1.9.0-nightly.

src/doc/nomicon/vec.md

index 63f83788c4bac55a8298fe17874d3fd8f99e94ce..691301946de4b0ff452ca7009249e5689cf40aa8 100644 (file)
@@ -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.