about summary refs log tree commit diff
path: root/src/librustc_error_codes/error_codes
diff options
context:
space:
mode:
authorDylan DPC <dylan.dpc@gmail.com>2020-01-04 11:41:35 +0530
committerGitHub <noreply@github.com>2020-01-04 11:41:35 +0530
commit062cd789588dfc493ef8c69378379024d3670f75 (patch)
treec35693ac07b279e80aeb6c6ad347fb5a8759b8be /src/librustc_error_codes/error_codes
parentaab4276477e84545641b1cf69b43612efa6bf702 (diff)
downloadrust-062cd789588dfc493ef8c69378379024d3670f75.tar.gz
rust-062cd789588dfc493ef8c69378379024d3670f75.zip
Update E0164.md
Diffstat (limited to 'src/librustc_error_codes/error_codes')
-rw-r--r--src/librustc_error_codes/error_codes/E0164.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/librustc_error_codes/error_codes/E0164.md b/src/librustc_error_codes/error_codes/E0164.md
index 8eb5ace4fe4..48bb6f4b382 100644
--- a/src/librustc_error_codes/error_codes/E0164.md
+++ b/src/librustc_error_codes/error_codes/E0164.md
@@ -22,7 +22,7 @@ fn bar(foo: A) {
 ```
 
 This error means that an attempt was made to match something which is neither a
-tuple struct nor a tuple variant. Only these two elements are allowed as
+tuple struct nor a tuple variant. Only these two elements are allowed as a
 pattern:
 
 ```