Skip to content

Commit 5d81c03

Browse files
committed
Merge pull request isocpp#87 from LocalToasty/LocalToasty-patch-typo-1
Local toasty patch typo 1
2 parents 3af2b93 + 8f47862 commit 5d81c03

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

CppCoreGuidelines.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2180,7 +2180,7 @@ If the writer of `g()` makes an assumption about the size of `buffer` a bad logi
21802180
<a name="Rf-T-return-out"></a>
21812181
### F.23: Use `T&` for an out-parameter that is expensive to move (only)
21822182

2183-
**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).
2183+
**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).
21842184

21852185
**Example**:
21862186

@@ -3408,7 +3408,7 @@ The destructor could send a message (somehow) to the responsible part of the sys
34083408
<a name="SS-ctor"></a>
34093409
## C.ctor: Constructors
34103410

3411-
A constuctor defined how an object is initialized (constructted).
3411+
A constuctor defined how an object is initialized (constructed).
34123412

34133413

34143414
<a name="Rc-ctor"></a>

0 commit comments

Comments
 (0)