From c7c5614a4257810cb66f1997cd2f9a0ba6368f55 Mon Sep 17 00:00:00 2001 From: Jonathan Wakely Date: Mon, 13 Feb 2017 20:18:38 +0000 Subject: [PATCH] Fix spelling typos --- CppCoreGuidelines.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md index 7bea734..5de7061 100644 --- a/CppCoreGuidelines.md +++ b/CppCoreGuidelines.md @@ -1034,7 +1034,7 @@ We typically have better things to do than repeatedly do routine tasks. ##### Example -Run a static analyser to verify that your code follows the guidelines you want it to follow. +Run a static analyzer to verify that your code follows the guidelines you want it to follow. ##### Note @@ -2396,7 +2396,7 @@ The C++ standard library does that implicitly for all functions in the C standar ##### Note -`constexpr` functions can when evaluated at run time, so yu may need `noexcept` for some of those. +`constexpr` functions can throw when evaluated at run time, so you may need `noexcept` for some of those. ##### Example @@ -3742,7 +3742,7 @@ This rule becomes even better if C++ gets ["uniform function call"](http://www.o ##### Exception -The language requires `virtual` funtions to be members, and not all `virtual` functions directly access data. +The language requires `virtual` functions to be members, and not all `virtual` functions directly access data. In particular, members of an abstract class rarely do. Note [multimethods](https://parasol.tamu.edu/~yuriys/papers/OMM10.pdf).