From c6220104c6d4c53cac19a50ad07870875b1b8b9a Mon Sep 17 00:00:00 2001 From: Russell Davis <551404+russelldavis@users.noreply.github.com> Date: Mon, 20 May 2019 17:51:59 -0700 Subject: [PATCH] Reword "Flow Control" to "Flow of Control" It's a bit of a nit, but flow control generally refers to something different. The way it's being used here, it's usually worded as flow *of* control or control flow. References: https://en.wikipedia.org/wiki/Flow_control https://en.wikipedia.org/wiki/Control_flow --- src/SUMMARY.md | 2 +- src/flow_control.md | 2 +- src/index.md | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/SUMMARY.md b/src/SUMMARY.md index 2056c4381e..7d91af4307 100644 --- a/src/SUMMARY.md +++ b/src/SUMMARY.md @@ -40,7 +40,7 @@ - [Expressions](expression.md) -- [Flow Control](flow_control.md) +- [Flow of Control](flow_control.md) - [if/else](flow_control/if_else.md) - [loop](flow_control/loop.md) - [Nesting and labels](flow_control/loop/nested.md) diff --git a/src/flow_control.md b/src/flow_control.md index 4cd6d0d8e7..c8a2f9ed87 100644 --- a/src/flow_control.md +++ b/src/flow_control.md @@ -1,4 +1,4 @@ -# Flow Control +# Flow of Control An essential part of any programming languages are ways to modify control flow: `if`/`else`, `for`, and others. Let's talk about them in Rust. diff --git a/src/index.md b/src/index.md index 5f1572f020..ad7024a516 100644 --- a/src/index.md +++ b/src/index.md @@ -25,7 +25,7 @@ Now let's begin! - [Expressions](expression.html) -- [Flow Control](flow_control.html) - `if`/`else`, `for`, and others. +- [Flow of Control](flow_control.html) - `if`/`else`, `for`, and others. - [Functions](fn.html) - Learn about Methods, Closures and High Order Functions.