sync: fix comment for commit_signature() (subject instead of hash)

The commit_signature() function does not use the hash of the commit,
which typically differs between the kernel repo and the mirrored
version, but the subject for this commit. Fix the comment accordingly.

Signed-off-by: Quentin Monnet <quentin@isovalent.com>
This commit is contained in:
Quentin Monnet 2021-10-25 20:29:25 +01:00 committed by Andrii Nakryiko
parent 2bb8f041b0
commit f05791d8cf

View File

@ -74,7 +74,7 @@ commit_desc()
} }
# Create commit single-line signature, which consists of: # Create commit single-line signature, which consists of:
# - full commit hash # - full commit subject
# - author date in ISO8601 format # - author date in ISO8601 format
# - full commit body with newlines replaced with vertical bars (|) # - full commit body with newlines replaced with vertical bars (|)
# - shortstat appended at the end # - shortstat appended at the end