about summary refs log tree commit diff
path: root/src/doc/tutorial.md
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2014-03-14 23:11:31 -0700
committerbors <bors@rust-lang.org>2014-03-14 23:11:31 -0700
commitfc7a112808fa918fa76c39ebd324bc5d19bc66e1 (patch)
tree7213cb7da98dcad55808aca6b5b939516e6f927a /src/doc/tutorial.md
parent2682c47dfbd2fde5a77cc025a352266d694280c4 (diff)
parent58e4ab2b33f559107dbdfa9d3cab882cf8029481 (diff)
auto merge of #12896 : alexcrichton/rust/goodbye-extra, r=brson
This commit shreds all remnants of libextra from the compiler and standard
distribution. Two modules, c_vec/tempfile, were moved into libstd after some
cleanup, and the other modules were moved to separate crates as seen fit.

Closes #8784
Closes #12413
Closes #12576
Diffstat (limited to 'src/doc/tutorial.md')
-rw-r--r--src/doc/tutorial.md11
1 files changed, 0 insertions, 11 deletions
diff --git a/src/doc/tutorial.md b/src/doc/tutorial.md
index 15fd21e9fbc..9b4d4444da4 100644
--- a/src/doc/tutorial.md
+++ b/src/doc/tutorial.md
@@ -3228,17 +3228,6 @@ See the [API documentation][stddoc] for details.
 
 [stddoc]: std/index.html
 
-## The extra library
-
-Rust ships with crates such as the [extra library], an accumulation of useful things,
-that are however not important enough to deserve a place in the standard
-library.  You can link to a library such as `extra` with an `extern crate extra;`.
-
-[extra library]: extra/index.html
-
-Right now `extra` contains those definitions directly, but in the future it will likely just
-re-export a bunch of 'officially blessed' crates that get managed with a package manager.
-
 # What next?
 
 Now that you know the essentials, check out any of the additional