diff --git a/src/doc/guide.md b/src/doc/guide.md index c7b8e42b28cde..3941327f5f227 100644 --- a/src/doc/guide.md +++ b/src/doc/guide.md @@ -3510,8 +3510,8 @@ everyone plays by these rules. At compile time, it verifies that none of these rules are broken. If our program compiles successfully, Rust can guarantee it is free of data races and other memory errors, and there is no runtime overhead for any of this. The borrow checker works only at compile time. If the borrow -checker did find a problem, it will report a **lifetime error**, and your -program will refuse to compile. +checker did find a problem, it will report an error and your program will +refuse to compile. That's a lot to take in. It's also one of the _most_ important concepts in all of Rust. Let's see this syntax in action: