mirror of
https://github.com/isocpp/CppCoreGuidelines.git
synced 2024-03-22 13:30:58 +08:00
typos
This commit is contained in:
parent
417d512fea
commit
0f61a4be4e
|
@ -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".
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user