From 3e3a8e58f0a5738c20527fecb4455abd8bef170b Mon Sep 17 00:00:00 2001 From: Jonas Claes Date: Sun, 31 Jul 2022 09:41:29 +0200 Subject: [PATCH] Update flow_control.md Fixed a typo and changed `essential` to `integral`. --- src/flow_control.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/flow_control.md b/src/flow_control.md index c8a2f9ed87..79ef7e1f6c 100644 --- a/src/flow_control.md +++ b/src/flow_control.md @@ -1,4 +1,4 @@ # Flow of Control -An essential part of any programming languages are ways to modify control flow: +An integral part of any programming language are ways to modify control flow: `if`/`else`, `for`, and others. Let's talk about them in Rust.