From 695cc003671f5a4156e67b34743dca6064e2cb6c Mon Sep 17 00:00:00 2001 From: king6cong Date: Mon, 10 Feb 2020 12:43:57 +0800 Subject: [PATCH] typo fix: add missing `by` --- src/expressions/block-expr.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/expressions/block-expr.md b/src/expressions/block-expr.md index 33cb42109..c35c3d678 100644 --- a/src/expressions/block-expr.md +++ b/src/expressions/block-expr.md @@ -22,7 +22,7 @@ of the block. Blocks are written as `{`, then any [inner attributes], then [statements], then an optional expression, and finally a `}`. Statements are usually required -to be followed a semicolon, with two exceptions. Item declaration statements do +to be followed by a semicolon, with two exceptions. Item declaration statements do not need to be followed by a semicolon. Expression statements usually require a following semicolon except if its outer expression is a flow control expression. Furthermore, extra semicolons between statements are allowed, but