From fa74b0ceeb6dda932fa1c2f9122c170651ffc145 Mon Sep 17 00:00:00 2001 From: Marko van Treeck Date: Tue, 22 Sep 2015 19:30:26 +0200 Subject: [PATCH 1/2] Corrected a typo --- CppCoreGuidelines.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md index 9794ac8..b6cf189 100644 --- a/CppCoreGuidelines.md +++ b/CppCoreGuidelines.md @@ -2180,7 +2180,7 @@ If the writer of `g()` makes an assumption about the size of `buffer` a bad logi ### 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**: From 8f47862f299909a6463d6d09ad8dac9a841d1571 Mon Sep 17 00:00:00 2001 From: Marko van Treeck Date: Wed, 23 Sep 2015 01:09:30 +0200 Subject: [PATCH 2/2] Fixed typo. --- CppCoreGuidelines.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md index b6cf189..7a72d34 100644 --- a/CppCoreGuidelines.md +++ b/CppCoreGuidelines.md @@ -3408,7 +3408,7 @@ The destructor could send a message (somehow) to the responsible part of the sys ## C.ctor: Constructors -A constuctor defined how an object is initialized (constructted). +A constuctor defined how an object is initialized (constructed).