Skip to content

Commit ea2fbb6

Browse files
committed
Merge pull request isocpp#60 from LeftofZen/patch-1
Update CppCoreGuidelines.md
2 parents 4b480fa + 554380b commit ea2fbb6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

CppCoreGuidelines.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -848,7 +848,7 @@ The spurious definition of copy operations disables move semantics so that the r
848848
The use of `new` and `delete` for `buf` is redundant; if we really needed a local string, we should use a local `string`.
849849
There are several more performance bugs and gratuitous complication.
850850

851-
**Note**: An individual example of waste is rarely significant, and where it is significant, it is typically easily eliminated by and expert.
851+
**Note**: An individual example of waste is rarely significant, and where it is significant, it is typically easily eliminated by an expert.
852852
However, waste spread liberally across a code base can easily be significant and experts are not always as available as we would like.
853853
The aim of this rule (and the more specific rules that supports it) is to eliminate most waste related to the use of C++ before it happens.
854854
After that, we can look at waste related to algorithms and requirements, but that is beyond the scope of these guidelines.

0 commit comments

Comments
 (0)