Skip to content

Commit 361f28d

Browse files
authored
Merge pull request cpp-best-practices#74 from richelbilderbeek/patch-1
Fixed typo
2 parents 1745dd1 + 89be9bb commit 361f28d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

03-Style.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -348,7 +348,7 @@ In general, using `auto` will avoid most of these issues, but not all.
348348

349349
Make sure you stick with the correct integer types and remain consistent with the C++ standard library. It might not warn on the platform you are currently using, but it probably will when you change platforms.
350350

351-
*Note that you can cause integer underflow when peforming some operations on unsigned values. For example:*
351+
*Note that you can cause integer underflow when performing some operations on unsigned values. For example:*
352352

353353
```cpp
354354
std::vector<int> v1{2,3,4,5,6,7,8,9};

0 commit comments

Comments
 (0)