mirror of
https://github.com/isocpp/CppCoreGuidelines.git
synced 2025-12-17 20:54:41 +03:00
Merge pull request #87 from LocalToasty/LocalToasty-patch-typo-1
Local toasty patch typo 1
This commit is contained in:
@@ -2180,7 +2180,7 @@ If the writer of `g()` makes an assumption about the size of `buffer` a bad logi
|
|||||||
<a name="Rf-T-return-out"></a>
|
<a name="Rf-T-return-out"></a>
|
||||||
### F.23: Use `T&` for an out-parameter that is expensive to move (only)
|
### F.23: Use `T&` for an out-parameter that is expensive to move (only)
|
||||||
|
|
||||||
**Reason**: A return value is harder to miss and harder to miuse than a `T&` (an in-out parameter); [see also](#Rf-return); [see also](#Rf-T-multi).
|
**Reason**: A return value is harder to miss and harder to misuse than a `T&` (an in-out parameter); [see also](#Rf-return); [see also](#Rf-T-multi).
|
||||||
|
|
||||||
**Example**:
|
**Example**:
|
||||||
|
|
||||||
@@ -3408,7 +3408,7 @@ The destructor could send a message (somehow) to the responsible part of the sys
|
|||||||
<a name="SS-ctor"></a>
|
<a name="SS-ctor"></a>
|
||||||
## C.ctor: Constructors
|
## C.ctor: Constructors
|
||||||
|
|
||||||
A constuctor defined how an object is initialized (constructted).
|
A constuctor defined how an object is initialized (constructed).
|
||||||
|
|
||||||
|
|
||||||
<a name="Rc-ctor"></a>
|
<a name="Rc-ctor"></a>
|
||||||
|
|||||||
Reference in New Issue
Block a user