commit | 43aa562111e699d08b3f120a6d56580a436d9e06 | [log] [tgz] |
---|---|---|
author | Paul Miller <[email protected]> | Thu Feb 21 03:26:58 2019 |
committer | Commit Bot <[email protected]> | Thu Feb 21 03:26:58 2019 |
tree | 0a6d8a1dc8f70af8422be7cc37a1c130f0d1c49a | |
parent | 0e5e2e77a02ec2ff425532f319e3f376e32ad8f5 [diff] [blame] |
Fix VariationsMurmurHash comment BUG=890413 Change-Id: I00a9ba53968a25392383513fd7dd199a2b789d58 Reviewed-on: https://chromium-review.googlesource.com/c/1479939 Auto-Submit: Paul Miller <[email protected]> Reviewed-by: Ilya Sherman <[email protected]> Commit-Queue: Ilya Sherman <[email protected]> Cr-Commit-Position: refs/heads/master@{#634046}
diff --git a/components/variations/variations_murmur_hash.h b/components/variations/variations_murmur_hash.h index 9ec77ad4..b3e7458 100644 --- a/components/variations/variations_murmur_hash.h +++ b/components/variations/variations_murmur_hash.h
@@ -32,9 +32,9 @@ // it produces the same results that MurmurHash3_x86_32 would produce on a // little-endian platform. // - // |length| is the number of bytes to hash. It mustn't exceed - // padded_data.size() * 4. If length % 4 != 0, Hash will consume the - // less-significant bytes of the last uint32_t first. + // |length| is the number of bytes to hash. It mustn't exceed data.size() * 4. + // If length % 4 != 0, Hash will consume the less-significant bytes of the + // last uint32_t first. // // MurmurHash3_x86_32 takes a seed, for which 0 is the typical value. Hash // hard-codes the seed to 0, since NormalizedMurmurHashEntropyProvider doesn't