diff --git a/src/ch03-03-how-functions-work.md b/src/ch03-03-how-functions-work.md index 7319b49f4d..1a3b52d5cd 100644 --- a/src/ch03-03-how-functions-work.md +++ b/src/ch03-03-how-functions-work.md @@ -1,6 +1,6 @@ ## Functions -Functions are pervasive in Rust code. You’ve already seen one of the most +Functions are prevalent in Rust code. You’ve already seen one of the most important functions in the language: the `main` function, which is the entry point of many programs. You’ve also seen the `fn` keyword, which allows you to declare new functions.