From f0ab249c3254ba5ad559d747d22d4a6863114174 Mon Sep 17 00:00:00 2001 From: "Carol (Nichols || Goulding)" Date: Mon, 18 Jul 2016 20:37:01 -0400 Subject: [PATCH] Correct a reference since functions isn't the next section --- src/ch04-01-anatomy-of-a-rust-program.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ch04-01-anatomy-of-a-rust-program.md b/src/ch04-01-anatomy-of-a-rust-program.md index 29f734a..0111268 100644 --- a/src/ch04-01-anatomy-of-a-rust-program.md +++ b/src/ch04-01-anatomy-of-a-rust-program.md @@ -73,7 +73,7 @@ fn main() { The `main()` function is the entry point of every executable Rust program. It doesn’t have to be at the very beginning of our source code, but it will be the first bit of code that runs when we execute our program. We’ll talk more about -functions in the next section, but for now, just know that `main()` is +functions in a later section, but for now, just know that `main()` is where our program begins. The opening curly brace (`{`) indicates the start of the function’s body.