about summary refs log tree commit diff
path: root/src/libsyntax/parse
diff options
context:
space:
mode:
authorBruce Mitchener <bruce.mitchener@gmail.com>2019-08-01 15:13:31 +0700
committerBruce Mitchener <bruce.mitchener@gmail.com>2019-08-02 01:36:36 +0700
commit86633b63894438a8eaad521ccca98d66104579ba (patch)
tree8405dea880524e66847a1739d86f48f34f3de166 /src/libsyntax/parse
parentb5c04e6d9e9063a0479fcfb125b0f03385d43332 (diff)
downloadrust-86633b63894438a8eaad521ccca98d66104579ba.tar.gz
rust-86633b63894438a8eaad521ccca98d66104579ba.zip
Fix typos in doc comments.
Diffstat (limited to 'src/libsyntax/parse')
-rw-r--r--src/libsyntax/parse/mod.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libsyntax/parse/mod.rs b/src/libsyntax/parse/mod.rs
index 1aac8bbb7aa..002aa2f891e 100644
--- a/src/libsyntax/parse/mod.rs
+++ b/src/libsyntax/parse/mod.rs
@@ -368,7 +368,7 @@ pub fn stream_to_parser_with_base_dir<'a>(
 
 /// A sequence separator.
 pub struct SeqSep {
-    /// The seperator token.
+    /// The separator token.
     pub sep: Option<TokenKind>,
     /// `true` if a trailing separator is allowed.
     pub trailing_sep_allowed: bool,