summaryrefslogtreecommitdiffstats
path: root/src/doc/rust-by-example/src/flow_control.md
diff options
context:
space:
mode:
Diffstat (limited to 'src/doc/rust-by-example/src/flow_control.md')
-rw-r--r--src/doc/rust-by-example/src/flow_control.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/doc/rust-by-example/src/flow_control.md b/src/doc/rust-by-example/src/flow_control.md
index c8a2f9ed8..79ef7e1f6 100644
--- a/src/doc/rust-by-example/src/flow_control.md
+++ b/src/doc/rust-by-example/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.