From dfcfd008fa392706099073098a46fe65061bf6c3 Mon Sep 17 00:00:00 2001 From: Keegan McAllister Date: Thu, 25 Sep 2014 13:36:43 -0700 Subject: [PATCH] Update some old references to rust.md --- src/doc/README.md | 2 +- src/doc/complement-design-faq.md | 2 +- src/libsyntax/feature_gate.rs | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/doc/README.md b/src/doc/README.md index 98d94442b441..cf1557e66049 100644 --- a/src/doc/README.md +++ b/src/doc/README.md @@ -33,7 +33,7 @@ something like: pandoc --from=markdown --to=html5 --number-sections -o reference.html reference.md ~~~~ -(rust.md being the Rust Reference Manual.) +(reference.md being the Rust Reference Manual.) The syntax for pandoc flavored markdown can be found at: http://johnmacfarlane.net/pandoc/README.html#pandocs-markdown diff --git a/src/doc/complement-design-faq.md b/src/doc/complement-design-faq.md index ca63dd0c2599..6cdaf96d3f50 100644 --- a/src/doc/complement-design-faq.md +++ b/src/doc/complement-design-faq.md @@ -39,7 +39,7 @@ representation as a primitive. This allows using Rust `enum`s in FFI where C `enum`s are also used, for most use cases. The attribute can also be applied to `struct`s to get the same layout as a C struct would. -[repr]: rust.html#miscellaneous-attributes +[repr]: reference.html#miscellaneous-attributes ## There is no GC diff --git a/src/libsyntax/feature_gate.rs b/src/libsyntax/feature_gate.rs index ca6d488772c6..a7d1f7575bfe 100644 --- a/src/libsyntax/feature_gate.rs +++ b/src/libsyntax/feature_gate.rs @@ -73,7 +73,7 @@ static KNOWN_FEATURES: &'static [(&'static str, Status)] = &[ ("if_let", Active), - // if you change this list without updating src/doc/rust.md, cmr will be sad + // if you change this list without updating src/doc/reference.md, cmr will be sad // A temporary feature gate used to enable parser extensions needed // to bootstrap fix for #5723.