about summary refs log tree commit diff
path: root/src/libsyntax
diff options
context:
space:
mode:
authorLuke Gallagher <luke@hypergeometric.net>2015-04-16 17:18:29 +1000
committerLuke Gallagher <luke@hypergeometric.net>2015-04-16 17:18:29 +1000
commitc1f6d6a13633d71845a84ffbe3709057be4e437c (patch)
treeb79a4ddd88bed403e4a1bca7db37941b4855d7cc /src/libsyntax
parent288809c8f35d9b37f2e4f5c3ac168f56dbc3bbc4 (diff)
downloadrust-c1f6d6a13633d71845a84ffbe3709057be4e437c.tar.gz
rust-c1f6d6a13633d71845a84ffbe3709057be4e437c.zip
Fix some documentation typos
Diffstat (limited to 'src/libsyntax')
-rw-r--r--src/libsyntax/feature_gate.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libsyntax/feature_gate.rs b/src/libsyntax/feature_gate.rs
index 659eb343232..d0975c76e93 100644
--- a/src/libsyntax/feature_gate.rs
+++ b/src/libsyntax/feature_gate.rs
@@ -10,7 +10,7 @@
 
 //! Feature gating
 //!
-//! This modules implements the gating necessary for preventing certain compiler
+//! This module implements the gating necessary for preventing certain compiler
 //! features from being used by default. This module will crawl a pre-expanded
 //! AST to ensure that there are no features which are used that are not
 //! enabled.