From f2a19b39fbb2c7fb7c6f0f52e7f65e6ed8bddec4 Mon Sep 17 00:00:00 2001 From: Jordan Humphreys Date: Fri, 1 May 2015 16:54:57 -0700 Subject: [PATCH] Correct typo in introduction Correct 'danging' to 'dangling'. --- src/doc/trpl/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/doc/trpl/README.md b/src/doc/trpl/README.md index 280665af78742..119bbf7fb2a84 100644 --- a/src/doc/trpl/README.md +++ b/src/doc/trpl/README.md @@ -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 we’re all good. -This concept of ownership isn’t just good for preventing danging pointers, but an +This concept of ownership isn’t just good for preventing dangling pointers, but an entire set of related problems, like iterator invalidation, concurrency, and more.