Skip to content

Commit

Permalink
fix comment
Browse files Browse the repository at this point in the history
  • Loading branch information
eokoneyo committed Dec 7, 2023
1 parent 6241ada commit 6b177d4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion x-pack/build_chromium/build_util.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ def mkdir(dir):
return os.makedirs(dir)

def sha256_file(filename):
"""Builds a hex md5 hash of the given file"""
"""Builds a hex sha256 hash of the given file"""
sha256 = hashlib.sha256()
with open(filename, 'rb') as f:
for chunk in iter(lambda: f.read(128 * sha256.block_size), b''):
Expand Down

0 comments on commit 6b177d4

Please sign in to comment.