about summary refs log tree commit diff
path: root/src/librustc/front
diff options
context:
space:
mode:
authorTom Jakubowski <tom@crystae.net>2014-06-22 10:29:42 -0700
committerTom Jakubowski <tom@crystae.net>2014-06-22 10:29:42 -0700
commitffcc4430981639ef2c04a719b794b5e424cdde09 (patch)
tree6528cd70338f01f64eeb1f86aa653f836a24a6e0 /src/librustc/front
parent4c39962d325c09849e9cbb1828f85028f29fcea3 (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/librustc/front')
-rw-r--r--src/librustc/front/feature_gate.rs2
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;