about summary refs log tree commit diff
diff options
context:
space:
mode:
authorJosh Triplett <josh@joshtriplett.org>2023-07-05 16:33:21 -0700
committerJosh Triplett <josh@joshtriplett.org>2023-07-20 17:57:21 -0700
commit69d29a70daa5e8df79d2016af681b13c82f561df (patch)
tree362a5861e43eb24ff122746ff6eb88fdfeab670e
parent9ccc104d14a93c593b8e4e3982037623a6fe5e0d (diff)
downloadrust-69d29a70daa5e8df79d2016af681b13c82f561df.tar.gz
rust-69d29a70daa5e8df79d2016af681b13c82f561df.zip
style-guide: Fix typo: s/right-hand side/left-hand side/
-rw-r--r--src/doc/style-guide/src/expressions.md2
1 files changed, 1 insertions, 1 deletions
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