about summary refs log tree commit diff
diff options
context:
space:
mode:
authorRicho Healey <richo@psych0tik.net>2014-05-27 11:37:30 -0700
committerRicho Healey <richo@psych0tik.net>2014-05-27 12:59:31 -0700
commitc256dcf8b66fb7100e2d735d6640cf76cb2d22f5 (patch)
treeadf143953d875ab631aa77ab2f65efc09d38c5b5
parent1f1b2e42d76ba1cd884adc49922636a6c2ac1b2f (diff)
downloadrust-c256dcf8b66fb7100e2d735d6640cf76cb2d22f5.tar.gz
rust-c256dcf8b66fb7100e2d735d6640cf76cb2d22f5.zip
doc: Fix link to string
This was missed in 553074506ecd139eb961fb91eb33ad9fd0183acb
-rw-r--r--src/libstd/lib.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstd/lib.rs b/src/libstd/lib.rs
index cf1ebc687a7..bc1e3b82547 100644
--- a/src/libstd/lib.rs
+++ b/src/libstd/lib.rs
@@ -49,7 +49,7 @@
 //! `&str`, a UTF-8 string, is a built-in type, and the standard library
 //! defines methods for it on a variety of traits in the
 //! [`str`](str/index.html) module. Rust strings are immutable;
-//! use the `String` type defined in [`strbuf`](strbuf/index.html)
+//! use the `String` type defined in [`string`](string/index.html)
 //! for a mutable string builder.
 //!
 //! For converting to strings use the [`format!`](fmt/index.html)