From c256dcf8b66fb7100e2d735d6640cf76cb2d22f5 Mon Sep 17 00:00:00 2001 From: Richo Healey Date: Tue, 27 May 2014 11:37:30 -0700 Subject: [PATCH] doc: Fix link to string This was missed in 553074506ecd139eb961fb91eb33ad9fd0183acb --- src/libstd/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)