Cleanup: iif should be iff (if-and-only-if) (#11570)

This commit is contained in:
Peter Nelson 2023-12-10 12:05:28 +00:00 committed by GitHub
parent 8186182e4c
commit 102fc6a9d1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -215,7 +215,7 @@ struct Rect {
/**
* Test if a point falls inside this Rect.
* @param pt the point to test.
* @return true iif the point falls inside the Rect.
* @return true iff the point falls inside the Rect.
*/
inline bool Contains(const Point &pt) const
{

View File

@ -78,7 +78,7 @@ struct ObjectSpec {
/**
* Test if this object is enabled.
* @return True iif this object is enabled.
* @return True iff this object is enabled.
*/
bool IsEnabled() const { return this->views > 0; }