Correct a reference since functions isn't the next section

This commit is contained in:
Carol (Nichols || Goulding) 2016-07-18 20:37:01 -04:00
parent 892a44cc7e
commit f0ab249c32

View File

@ -73,7 +73,7 @@ fn main() {
The `main()` function is the entry point of every executable Rust program. It
doesnt 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. Well 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 functions body.