about summary refs log tree commit diff
path: root/src/doc
diff options
context:
space:
mode:
authorKeegan McAllister <kmcallister@mozilla.com>2014-09-25 13:36:43 -0700
committerKeegan McAllister <kmcallister@mozilla.com>2014-10-01 13:21:52 -0700
commitdfcfd008fa392706099073098a46fe65061bf6c3 (patch)
tree7cd1d072c6dc66d21e1e5e711fb4d474c1b90bbe /src/doc
parente3828026d5d037c49cc982ecf4fbe97a8f8fb7e1 (diff)
downloadrust-dfcfd008fa392706099073098a46fe65061bf6c3.tar.gz
rust-dfcfd008fa392706099073098a46fe65061bf6c3.zip
Update some old references to rust.md
Diffstat (limited to 'src/doc')
-rw-r--r--src/doc/README.md2
-rw-r--r--src/doc/complement-design-faq.md2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/doc/README.md b/src/doc/README.md
index 98d94442b44..cf1557e6604 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 ca63dd0c259..6cdaf96d3f5 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