From ffcc4430981639ef2c04a719b794b5e424cdde09 Mon Sep 17 00:00:00 2001 From: Tom Jakubowski Date: Sun, 22 Jun 2014 10:29:42 -0700 Subject: [PATCH] librustc: Fix poorly formatted doc in feature_gate The #![feature(...)] line had been rendering in the docs as a header because of Markdown syntax. --- src/librustc/front/feature_gate.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/librustc/front/feature_gate.rs b/src/librustc/front/feature_gate.rs index 07926ee112d5a..07715684db3ef 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;