From 69efba734806cf997d36ae65c5865bc6592c1ace Mon Sep 17 00:00:00 2001 From: Mark Olesen Date: Fri, 19 May 2017 15:16:54 +0200 Subject: [PATCH] STYLE: typos in comments --- src/OpenFOAM/primitives/predicates/predicates.H | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/OpenFOAM/primitives/predicates/predicates.H b/src/OpenFOAM/primitives/predicates/predicates.H index 8731fb4518..e751c7e957 100644 --- a/src/OpenFOAM/primitives/predicates/predicates.H +++ b/src/OpenFOAM/primitives/predicates/predicates.H @@ -59,7 +59,7 @@ public: inline always() {} - //- Evalulated as a bool - return true + //- Evaluated as a bool - return true inline operator bool() const { return true; @@ -79,8 +79,8 @@ public: return true; } - //- String matching returning true - inline bool match(const std::string& unused, bool literal=false) const + //- String match returning true + inline bool match(const std::string&, bool literal=false) const { return true; } @@ -101,7 +101,7 @@ public: inline never() {} - //- Evalulated as a bool - return false + //- Evaluated as a bool - return false inline operator bool() const { return false; @@ -121,8 +121,8 @@ public: return false; } - //- String matching returning false - inline bool match(const std::string& unused, bool literal=false) const + //- String match returning false + inline bool match(const std::string&, bool literal=false) const { return false; }