about summary refs log tree commit diff
path: root/src/libsyntax/parse
diff options
context:
space:
mode:
authorMazdak Farrokhzad <twingoow@gmail.com>2019-08-02 12:14:18 +0200
committerGitHub <noreply@github.com>2019-08-02 12:14:18 +0200
commitdbfe12daed1ede9d2ccb6bf749143368bc5eade4 (patch)
treee7ee1d0a58556039d057087b74bfc8ef2d1f61a1 /src/libsyntax/parse
parent5155c7ea688b4025f4d25233e0f8353f51107269 (diff)
parent325c6a56c274678f294bfa25ee43e1eef48f46a2 (diff)
downloadrust-dbfe12daed1ede9d2ccb6bf749143368bc5eade4.tar.gz
rust-dbfe12daed1ede9d2ccb6bf749143368bc5eade4.zip
Rollup merge of #63189 - waywardmonkeys:doc-improvements, r=Centril
Doc improvements

Miscellaneous documentation fixes.
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,