about summary refs log tree commit diff
path: root/src/librustc_error_codes
diff options
context:
space:
mode:
authorGuillaume Gomez <guillaume1.gomez@gmail.com>2020-07-25 18:57:42 +0200
committerGuillaume Gomez <guillaume1.gomez@gmail.com>2020-07-25 18:57:42 +0200
commit1d2e3fff69b654c3dfd6a810e193db29bb1868fa (patch)
tree70360b9050290111b4eb0890eaf13b70d180efa4 /src/librustc_error_codes
parent9e92106d457abd14f82adc29e7f2496861e07916 (diff)
downloadrust-1d2e3fff69b654c3dfd6a810e193db29bb1868fa.tar.gz
rust-1d2e3fff69b654c3dfd6a810e193db29bb1868fa.zip
Clean up E0730 explanation
Diffstat (limited to 'src/librustc_error_codes')
-rw-r--r--src/librustc_error_codes/error_codes/E0730.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/librustc_error_codes/error_codes/E0730.md b/src/librustc_error_codes/error_codes/E0730.md
index c2a71ca5669..d385009063f 100644
--- a/src/librustc_error_codes/error_codes/E0730.md
+++ b/src/librustc_error_codes/error_codes/E0730.md
@@ -1,6 +1,6 @@
 An array without a fixed length was pattern-matched.
 
-Example of erroneous code:
+Erroneous code example:
 
 ```compile_fail,E0730
 #![feature(const_generics)]
@@ -14,8 +14,8 @@ fn is_123<const N: usize>(x: [u32; N]) -> bool {
 }
 ```
 
-Ensure that the pattern is consistent with the size of the matched
-array. Additional elements can be matched with `..`:
+Ensure that the pattern is consistent with the size of the matched array.
+Additional elements can be matched with `..`:
 
 ```
 let r = &[1, 2, 3, 4];