Auto merge of #25040 - mrsweaters:patch-1, r=alexcrichton

Correct 'danging' to 'dangling'.
This commit is contained in:
bors 2015-05-02 08:09:47 +00:00
commit 82158c9d1c

View File

@ -190,5 +190,5 @@ fn main() {
We created an inner scope with an additional set of curly braces. `y` will go out of
scope before we call `push()`, and so were all good.
This concept of ownership isnt just good for preventing danging pointers, but an
This concept of ownership isnt just good for preventing dangling pointers, but an
entire set of related problems, like iterator invalidation, concurrency, and more.