Changed the sample command in the Rustdoc readme to use --output instead of the outdated --output-dir and

fixed markdown formatting in debuginfo.rs
This commit is contained in:
Kasey Carrothers 2014-08-17 12:37:51 -07:00
parent fb018a3d4b
commit 61b9036bb8
2 changed files with 20 additions and 15 deletions

View file

@ -19,7 +19,7 @@ for the 'std' and 'extra' libraries.
To generate HTML documentation from one source file/crate, do something like:
~~~~
rustdoc --output-dir html-doc/ --output-format html ../src/libstd/path.rs
rustdoc --output html-doc/ --output-format html ../src/libstd/path.rs
~~~~
(This, of course, requires a working build of the `rustdoc` tool.)