summary refs log tree commit diff
path: root/src/doc/reference.md
diff options
context:
space:
mode:
authorBarosl LEE <github@barosl.com>2015-01-21 02:16:46 +0900
committerBarosl LEE <github@barosl.com>2015-01-21 02:16:46 +0900
commitd8a892303cab952b1af787122e5551bce95d8770 (patch)
treebb04842c26a3ee17db4850b0e3523d329deefda2 /src/doc/reference.md
parentb7afe5ec2762cb295b6adffd94ec6bec3b7c0f15 (diff)
parent8da284a045c4d59a850f63fe9a11ab7ddb38ef17 (diff)
downloadrust-d8a892303cab952b1af787122e5551bce95d8770.tar.gz
rust-d8a892303cab952b1af787122e5551bce95d8770.zip
Rollup merge of #21294 - alfie:typo, r=steveklabnik
Wrong verb.
Diffstat (limited to 'src/doc/reference.md')
-rw-r--r--src/doc/reference.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/doc/reference.md b/src/doc/reference.md
index caee23185b9..e2c61e0a8bd 100644
--- a/src/doc/reference.md
+++ b/src/doc/reference.md
@@ -3423,7 +3423,7 @@ Used inside an array pattern, `..` stands for any number of elements, when the
 `advanced_slice_patterns` feature gate is turned on. This wildcard can be used
 at most once for a given array, which implies that it cannot be used to
 specifically match elements that are at an unknown distance from both ends of a
-array, like `[.., 42, ..]`. If followed by a variable name, it will bind the
+array, like `[.., 42, ..]`. If preceded by a variable name, it will bind the
 corresponding slice to the variable. Example:
 
 ```