]> git.lizzy.rs Git - rust.git/commitdiff
Fixed weird grammar in lifetimes guide.
authorJonathan Reem <jonathan.reem@gmail.com>
Thu, 5 Jun 2014 05:27:21 +0000 (22:27 -0700)
committerJonathan Reem <jonathan.reem@gmail.com>
Thu, 5 Jun 2014 05:27:21 +0000 (22:27 -0700)
src/doc/guide-lifetimes.md

index 2f519306dfd08375d98930dd264a6aae728c3e43..65f37031674c7caf637b6c067c5179a7fe4af95c 100644 (file)
@@ -14,9 +14,9 @@ Despite their complete safety, a reference's representation at runtime
 is the same as that of an ordinary pointer in a C program. They introduce zero
 overhead. The compiler does all safety checks at compile time.
 
-Although references have rather elaborate theoretical underpinnings usually
-introduced as (e.g. region pointers), the core concepts will be familiar to
-anyone who has worked with C or C++. The best way to explain how they are
+Although references have rather elaborate theoretical underpinnings
+(e.g. region pointers), the core concepts will be familiar to anyone
+who has worked with C or C++. The best way to explain how they are
 used—and their limitations—is probably just to work through several examples.
 
 # By example