diff --git a/connector/ldap/ldap.go b/connector/ldap/ldap.go
index 8d112b7267d67a180d6a48670e1e8cf735e4700c..127d5d9f809dec4656b010187baf4d92f865da53 100644
--- a/connector/ldap/ldap.go
+++ b/connector/ldap/ldap.go
@@ -359,7 +359,7 @@ func (c *ldapConnector) userEntry(conn *ldap.Conn, username string) (user ldap.E
 }
 
 func (c *ldapConnector) Login(ctx context.Context, s connector.Scopes, username, password string) (ident connector.Identity, validPass bool, err error) {
-	// make this check to avoid anonymous bind to the LDAP server.
+	// make this check to avoid unauthenticated bind to the LDAP server.
 	if password == "" {
 		return connector.Identity{}, false, nil
 	}