Browse Source

Variant: fix typo

1vanK 3 years ago
parent
commit
dbe52612dc
1 changed files with 2 additions and 2 deletions
  1. 2 2
      Source/Urho3D/Core/Variant.h

+ 2 - 2
Source/Urho3D/Core/Variant.h

@@ -814,13 +814,13 @@ public:
     /// Test for equality with an integer. To return true, both the type and value must match.
     bool operator ==(int rhs) const { return type_ == VAR_INT ? value_.int_ == rhs : false; }
 
-    /// Test for equality with an unsigned 64 bit integer. To return true, both the type and value must match.
+    /// Test for equality with an unsigned integer. To return true, both the type and value must match.
     bool operator ==(unsigned rhs) const { return type_ == VAR_INT ? value_.int_ == static_cast<int>(rhs) : false; }
 
     /// Test for equality with an 64 bit integer. To return true, both the type and value must match.
     bool operator ==(long long rhs) const { return type_ == VAR_INT64 ? value_.int64_ == rhs : false; }
 
-    /// Test for equality with an unsigned integer. To return true, both the type and value must match.
+    /// Test for equality with an unsigned 64 bit integer. To return true, both the type and value must match.
     bool operator ==(unsigned long long rhs) const { return type_ == VAR_INT64 ? value_.int64_ == static_cast<long long>(rhs) : false; }
 
     /// Test for equality with a bool. To return true, both the type and value must match.