diff options
| author | Alex Crichton <alex@alexcrichton.com> | 2016-04-14 18:00:35 -0700 |
|---|---|---|
| committer | Alex Crichton <alex@alexcrichton.com> | 2016-04-19 09:52:56 -0700 |
| commit | ede8944ea778e33b0c268fdd0545cb2b15b9cf24 (patch) | |
| tree | a778ca6b0af1d09113fde88b1dfbccf841b046d1 /src/doc/style/errors | |
| parent | 478a33dabc4e6f2f501f476c79b56178d9df4f37 (diff) | |
| download | rust-ede8944ea778e33b0c268fdd0545cb2b15b9cf24.tar.gz rust-ede8944ea778e33b0c268fdd0545cb2b15b9cf24.zip | |
rustbuild: Run all markdown documentation tests
This commit adds support to rustbuild to run all documentation tests, basically running `rustdoc --test` over all our documentation. This also includes support for running the error index tests.
Diffstat (limited to 'src/doc/style/errors')
| -rw-r--r-- | src/doc/style/errors/ergonomics.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/doc/style/errors/ergonomics.md b/src/doc/style/errors/ergonomics.md index a404d25bf37..269f2a28946 100644 --- a/src/doc/style/errors/ergonomics.md +++ b/src/doc/style/errors/ergonomics.md @@ -9,7 +9,7 @@ pattern. Prefer -```rust +```rust,ignore use std::io::{File, Open, Write, IoError}; struct Info { @@ -31,7 +31,7 @@ fn write_info(info: &Info) -> Result<(), IoError> { over -```rust +```rust,ignore use std::io::{File, Open, Write, IoError}; struct Info { |
