diff options
| -rw-r--r-- | runtime/mirror/object.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/mirror/object.cc b/runtime/mirror/object.cc index 4d941302f9..701c600822 100644 --- a/runtime/mirror/object.cc +++ b/runtime/mirror/object.cc @@ -183,7 +183,7 @@ int32_t Object::IdentityHashCode() const { break; } case LockWord::kFatLocked: { - // Already inflated, return the has stored in the monitor. + // Already inflated, return the hash stored in the monitor. Monitor* monitor = lw.FatLockMonitor(); DCHECK(monitor != nullptr); return monitor->GetHashCode(); |