about summary refs log tree commit diff
path: root/docs
diff options
context:
space:
mode:
authorChris Burgess <9002722+cgburgess@users.noreply.github.com>2022-06-11 12:50:36 -0400
committerGitHub <noreply@github.com>2022-06-11 12:50:36 -0400
commit54f5a68f792b2a54f8b0a926a57e5206ee8b4225 (patch)
tree44155bb47900f6810652dae3ac2a24bbb683935e /docs
parent37b01f9f392b74a1f268acd944e4c8c8989a898c (diff)
downloadrust-54f5a68f792b2a54f8b0a926a57e5206ee8b4225.tar.gz
rust-54f5a68f792b2a54f8b0a926a57e5206ee8b4225.zip
fix typo in style.md
Diffstat (limited to 'docs')
-rw-r--r--docs/dev/style.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/dev/style.md b/docs/dev/style.md
index 82b6c749e47..c06627f2a90 100644
--- a/docs/dev/style.md
+++ b/docs/dev/style.md
@@ -971,7 +971,7 @@ Between `ref` and mach ergonomics, the latter is more ergonomic in most cases, a
 
 ## Empty Match Arms
 
-Ues `=> (),` when a match arm is intentionally empty:
+Use `=> (),` when a match arm is intentionally empty:
 
 ```rust
 // GOOD