mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
STYLE: typos in comments
This commit is contained in:
@ -59,7 +59,7 @@ public:
|
|||||||
inline always()
|
inline always()
|
||||||
{}
|
{}
|
||||||
|
|
||||||
//- Evalulated as a bool - return true
|
//- Evaluated as a bool - return true
|
||||||
inline operator bool() const
|
inline operator bool() const
|
||||||
{
|
{
|
||||||
return true;
|
return true;
|
||||||
@ -79,8 +79,8 @@ public:
|
|||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
//- String matching returning true
|
//- String match returning true
|
||||||
inline bool match(const std::string& unused, bool literal=false) const
|
inline bool match(const std::string&, bool literal=false) const
|
||||||
{
|
{
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
@ -101,7 +101,7 @@ public:
|
|||||||
inline never()
|
inline never()
|
||||||
{}
|
{}
|
||||||
|
|
||||||
//- Evalulated as a bool - return false
|
//- Evaluated as a bool - return false
|
||||||
inline operator bool() const
|
inline operator bool() const
|
||||||
{
|
{
|
||||||
return false;
|
return false;
|
||||||
@ -121,8 +121,8 @@ public:
|
|||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
//- String matching returning false
|
//- String match returning false
|
||||||
inline bool match(const std::string& unused, bool literal=false) const
|
inline bool match(const std::string&, bool literal=false) const
|
||||||
{
|
{
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user