From 2a7fab169717e6f63da925846620c9b542922970 Mon Sep 17 00:00:00 2001 From: Steven Peters Date: Wed, 23 Mar 2016 15:24:19 -0700 Subject: [PATCH] CppCoreGuidelines.md spelling error stared_ptr -> shared_ptr --- CppCoreGuidelines.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md index e879e8d..00d7a93 100644 --- a/CppCoreGuidelines.md +++ b/CppCoreGuidelines.md @@ -7598,7 +7598,7 @@ be able to destroy a cyclic structure. ??? (HS: A lot of people say "to break cycles", while I think "temporary shared ownership" is more to the point.) ???(BS: breaking cycles is what you must do; temporarily sharing ownership is how you do it. -You could "temporarily share ownership" simply by using another `stared_ptr`.) +You could "temporarily share ownership" simply by using another `shared_ptr`.) ##### Enforcement