From: Barosl Lee Date: Sat, 13 Dec 2014 14:54:06 +0000 (+0900) Subject: Minor fix for the Rust language FAQ X-Git-Url: https://git.lizzy.rs/?a=commitdiff_plain;h=9f244dc97a1ee0340d53de5faedb5a170fa8e6f2;p=rust.git Minor fix for the Rust language FAQ extra library -> standard library --- diff --git a/src/doc/complement-lang-faq.md b/src/doc/complement-lang-faq.md index 9e73863239f..a9a9e0858ec 100644 --- a/src/doc/complement-lang-faq.md +++ b/src/doc/complement-lang-faq.md @@ -17,7 +17,7 @@ Some examples that demonstrate different aspects of the language: * [sprocketnes], an NES emulator with no GC, using modern Rust conventions * The language's general-purpose [hash] function, SipHash-2-4. Bit twiddling, OO, macros * The standard library's [HashMap], a sendable hash map in an OO style -* The extra library's [json] module. Enums and pattern matching +* The standard library's [json] module. Enums and pattern matching [sprocketnes]: https://github.com/pcwalton/sprocketnes [hash]: https://github.com/rust-lang/rust/blob/master/src/libstd/hash/mod.rs