From 54f5a68f792b2a54f8b0a926a57e5206ee8b4225 Mon Sep 17 00:00:00 2001 From: Chris Burgess <9002722+cgburgess@users.noreply.github.com> Date: Sat, 11 Jun 2022 12:50:36 -0400 Subject: [PATCH] fix typo in style.md --- docs/dev/style.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/dev/style.md b/docs/dev/style.md index 82b6c749e4..c06627f2a9 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