From 0f61a4be4e8f0d9308ea385eccbe02b74904e35f Mon Sep 17 00:00:00 2001 From: Bjarne Stroustrup Date: Fri, 12 Oct 2018 15:29:21 -0400 Subject: [PATCH] typos --- CppCoreGuidelines.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md index 2884f12..9187170 100644 --- a/CppCoreGuidelines.md +++ b/CppCoreGuidelines.md @@ -4425,8 +4425,8 @@ In particular, if a concrete type has an assignment also give it an equals opera ##### Note -Handles for resources that cannot be cloned, e.g., a `scoped_lock` for a `mutex`, resemble concrete types in that they are most often be stack_allocated. -However, objects of suct types typically cannot be copied (instead, they can usually be moved), +Handles for resources that cannot be cloned, e.g., a `scoped_lock` for a `mutex`, resemble concrete types in that they are most often are stack_allocated. +However, objects of such types typically cannot be copied (instead, they can usually be moved), so they can't be `regular`; instead, they tend to be `semiregular`. Often, such types are referred to as "move-only types".