Skip to content

Commit 7e0cc34

Browse files
committed
Fixed weird grammar in lifetimes guide.
1 parent 193574a commit 7e0cc34

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/doc/guide-lifetimes.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@ Despite their complete safety, a reference's representation at runtime
1414
is the same as that of an ordinary pointer in a C program. They introduce zero
1515
overhead. The compiler does all safety checks at compile time.
1616

17-
Although references have rather elaborate theoretical underpinnings usually
18-
introduced as (e.g. region pointers), the core concepts will be familiar to
19-
anyone who has worked with C or C++. The best way to explain how they are
17+
Although references have rather elaborate theoretical underpinnings
18+
(e.g. region pointers), the core concepts will be familiar to anyone
19+
who has worked with C or C++. The best way to explain how they are
2020
used—and their limitations—is probably just to work through several examples.
2121

2222
# By example

0 commit comments

Comments
 (0)