about summary refs log tree commit diff
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2022-06-11 16:57:38 +0000
committerbors <bors@rust-lang.org>2022-06-11 16:57:38 +0000
commitccab003db643b68a783db2d1fecc3ece86c35069 (patch)
tree44155bb47900f6810652dae3ac2a24bbb683935e
parent37b01f9f392b74a1f268acd944e4c8c8989a898c (diff)
parent54f5a68f792b2a54f8b0a926a57e5206ee8b4225 (diff)
downloadrust-ccab003db643b68a783db2d1fecc3ece86c35069.tar.gz
rust-ccab003db643b68a783db2d1fecc3ece86c35069.zip
Auto merge of #12506 - cgburgess:master, r=Veykril
minor: Fix typo in style guide

Fix type `Ues` -> `Use` in `style.md`
-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