From 062cd789588dfc493ef8c69378379024d3670f75 Mon Sep 17 00:00:00 2001 From: Dylan DPC Date: Sat, 4 Jan 2020 11:41:35 +0530 Subject: [PATCH] Update E0164.md --- src/librustc_error_codes/error_codes/E0164.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/librustc_error_codes/error_codes/E0164.md b/src/librustc_error_codes/error_codes/E0164.md index 8eb5ace4fe4d..48bb6f4b3828 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: ```