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.