diff options
| author | Tom Jakubowski <tom@crystae.net> | 2014-06-22 10:29:42 -0700 |
|---|---|---|
| committer | Tom Jakubowski <tom@crystae.net> | 2014-06-22 10:29:42 -0700 |
| commit | ffcc4430981639ef2c04a719b794b5e424cdde09 (patch) | |
| tree | 6528cd70338f01f64eeb1f86aa653f836a24a6e0 /src | |
| parent | 4c39962d325c09849e9cbb1828f85028f29fcea3 (diff) | |
librustc: Fix poorly formatted doc in feature_gate
The #![feature(...)] line had been rendering in the docs as a header because of Markdown syntax.
Diffstat (limited to 'src')
| -rw-r--r-- | src/librustc/front/feature_gate.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/librustc/front/feature_gate.rs b/src/librustc/front/feature_gate.rs index 07926ee112d..07715684db3 100644 --- a/src/librustc/front/feature_gate.rs +++ b/src/librustc/front/feature_gate.rs @@ -16,7 +16,7 @@ //! enabled. //! //! Features are enabled in programs via the crate-level attributes of -//! #![feature(...)] with a comma-separated list of features. +//! `#![feature(...)]` with a comma-separated list of features. use middle::lint; |
