Fix comment for MD5Hash.

llvm-svn: 260221
This commit is contained in:
Teresa Johnson 2016-02-09 13:28:44 +00:00
parent 6e2ee6dbbf
commit eb74c2aa3b
1 changed files with 1 additions and 1 deletions

View File

@ -66,7 +66,7 @@ private:
const uint8_t *body(ArrayRef<uint8_t> Data);
};
/// Helper to compute and return a 64-bit MD5 Hash of a given string.
/// Helper to compute and return lower 64 bits of the given string's MD5 hash.
inline uint64_t MD5Hash(StringRef Str) {
MD5 Hash;
Hash.update(Str);