diff --git a/src/database/users.rs b/src/database/users.rs
index e608673ade496513420062d03454836bcfa1af2e..9b986d4ed3116ffeca3af24c37d1c3fc817cc818 100644
--- a/src/database/users.rs
+++ b/src/database/users.rs
@@ -77,8 +77,6 @@ pub fn create(&self, user_id: &UserId, password: Option<&str>) -> Result<()> {
     }
 
     /// Returns the number of users registered on this server.
-    /// It really returns all users, not only real ones with a
-    /// password to login but also bridge puppets...
     #[tracing::instrument(skip(self))]
     pub fn count(&self) -> Result<usize> {
         Ok(self.userid_password.iter().count())