Remove comment mentioning deferenceability.

This is implicit from the reference.

PiperOrigin-RevId: 791229648
Change-Id: I80145d0ec422ce1f54c19651d2fbc0d52692c1ae
diff --git a/absl/synchronization/mutex.h b/absl/synchronization/mutex.h
index 6d7d4c8..09f99d7 100644
--- a/absl/synchronization/mutex.h
+++ b/absl/synchronization/mutex.h
@@ -599,9 +599,8 @@
  public:
   // Constructors
 
-  // Calls `mu->lock()` and returns when that call returns. That is, `*mu` is
-  // guaranteed to be locked when this object is constructed. Requires that
-  // `mu` be dereferenceable.
+  // Calls `mu.lock()` and returns when that call returns. That is, `mu` is
+  // guaranteed to be locked when this object is constructed.
   explicit MutexLock(Mutex& mu) ABSL_EXCLUSIVE_LOCK_FUNCTION(mu) : mu_(mu) {
     this->mu_.lock();
   }