From 69d29a70daa5e8df79d2016af681b13c82f561df Mon Sep 17 00:00:00 2001 From: Josh Triplett Date: Wed, 5 Jul 2023 16:33:21 -0700 Subject: [PATCH] style-guide: Fix typo: s/right-hand side/left-hand side/ --- src/doc/style-guide/src/expressions.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/doc/style-guide/src/expressions.md b/src/doc/style-guide/src/expressions.md index 633fdc909bd..42ecc442eb3 100644 --- a/src/doc/style-guide/src/expressions.md +++ b/src/doc/style-guide/src/expressions.md @@ -688,7 +688,7 @@ match foo { ``` If the body is a single expression with no line comments and not a control flow -expression, start it on the same line as the right-hand side. If not, then it +expression, start it on the same line as the left-hand side. If not, then it must be in a block. Example: ```rust