Fix missing word

This commit is contained in:
aaaxx 2017-01-06 13:16:14 +01:00 committed by GitHub
parent 2d32840aae
commit a407734bc4

View File

@ -4,7 +4,7 @@ When you start writing programs in Rust, your code might live solely in the
`main` function. As your code grows, youll eventually move functionality out
into other functions, both for re-use and for better organization. By splitting
your code up into smaller chunks, each chunk is easier to understand on its
own. But what happens if find yourself with too many functions? Rust has a
own. But what happens if you find yourself with too many functions? Rust has a
module system that handles the problem of wanting to to re-use code while
keeping your code organized.