Skip to content
Snippets Groups Projects
Commit 69efba73 authored by Mark OLESEN's avatar Mark OLESEN
Browse files

STYLE: typos in comments

parent 31d0f2c5
Branches
Tags
No related merge requests found
......@@ -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;
}
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment