From 6e74b92a49b0c9606017f25438750588d288e0ec Mon Sep 17 00:00:00 2001 From: Martin Geisler Date: Tue, 16 Jan 2024 15:02:52 +0100 Subject: [PATCH] Formatting --- src/control-flow-basics/blocks-and-scopes.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/control-flow-basics/blocks-and-scopes.md b/src/control-flow-basics/blocks-and-scopes.md index a6af0d61ded4..3e8d685e0fbe 100644 --- a/src/control-flow-basics/blocks-and-scopes.md +++ b/src/control-flow-basics/blocks-and-scopes.md @@ -6,8 +6,9 @@ minutes: 10 ## Blocks -A block in Rust contains a sequence of expressions, enclosed by braces `{}`. Each block has a value and a -type, which are those of the last expression of the block: +A block in Rust contains a sequence of expressions, enclosed by braces `{}`. +Each block has a value and a type, which are those of the last expression of the +block: ```rust,editable fn main() {