diff options
| author | Steve Klabnik <steve@steveklabnik.com> | 2015-04-15 17:26:06 -0400 |
|---|---|---|
| committer | Steve Klabnik <steve@steveklabnik.com> | 2015-04-15 17:26:06 -0400 |
| commit | 031619f5af9a2d538f1a83813ec5d7c799bdd489 (patch) | |
| tree | 323e6ed6502cd523bd9503703b0a30e99edf3f9f | |
| parent | ce27d024ff16d297ce5e5bfb7cce11810e9c9b5e (diff) | |
| parent | 6fc138136d8d6cf9f8478efa501e3a173e5c0277 (diff) | |
| download | rust-031619f5af9a2d538f1a83813ec5d7c799bdd489.tar.gz rust-031619f5af9a2d538f1a83813ec5d7c799bdd489.zip | |
Rollup merge of #24425 - dhuseby:bitrig_fixing_tests_3, r=alexcrichton
the code block in the no-stdlib.md file caused test failure on bitrig and openbsd. Closes #24108
| -rw-r--r-- | src/doc/trpl/no-stdlib.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/doc/trpl/no-stdlib.md b/src/doc/trpl/no-stdlib.md index 094c82a08cc..67db919c59f 100644 --- a/src/doc/trpl/no-stdlib.md +++ b/src/doc/trpl/no-stdlib.md @@ -103,7 +103,7 @@ necessary functionality for writing idiomatic and effective Rust code. As an example, here is a program that will calculate the dot product of two vectors provided from C, using idiomatic Rust practices. -``` +```ignore #![feature(lang_items, start, no_std, core, libc)] #![no_std] |
