Skip to content

Commit 48661b7

Browse files
authored
Merge pull request #1190 from russelldavis/flow-of-control
Reword "Flow Control" to "Flow of Control"
2 parents a2a1be1 + c622010 commit 48661b7

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/SUMMARY.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040

4141
- [Expressions](expression.md)
4242

43-
- [Flow Control](flow_control.md)
43+
- [Flow of Control](flow_control.md)
4444
- [if/else](flow_control/if_else.md)
4545
- [loop](flow_control/loop.md)
4646
- [Nesting and labels](flow_control/loop/nested.md)

src/flow_control.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Flow Control
1+
# Flow of Control
22

33
An essential part of any programming languages are ways to modify control flow:
44
`if`/`else`, `for`, and others. Let's talk about them in Rust.

src/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ Now let's begin!
2525

2626
- [Expressions](expression.html)
2727

28-
- [Flow Control](flow_control.html) - `if`/`else`, `for`, and others.
28+
- [Flow of Control](flow_control.html) - `if`/`else`, `for`, and others.
2929

3030
- [Functions](fn.html) - Learn about Methods, Closures and High Order Functions.
3131

0 commit comments

Comments
 (0)