diff --git a/consensus/clique/api.go b/consensus/clique/api.go
index b875eef0126a23e0e307f6483c0bfc6fe21f4792..6bcf987af55eb983a1dad6c6f9da8909eea7054b 100644
--- a/consensus/clique/api.go
+++ b/consensus/clique/api.go
@@ -75,7 +75,7 @@ func (api *API) GetSigners(number *rpc.BlockNumber) ([]common.Address, error) {
 	return snap.signers(), nil
 }
 
-// GetSignersAtHash retrieves the state snapshot at a given block.
+// GetSignersAtHash retrieves the list of authorized signers at the specified block.
 func (api *API) GetSignersAtHash(hash common.Hash) ([]common.Address, error) {
 	header := api.chain.GetHeaderByHash(hash)
 	if header == nil {