Skip to content

Commit 88aacb6

Browse files
committed
Remove trailing whitespace
1 parent 0a00016 commit 88aacb6

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

doc/hash/reference.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -610,14 +610,14 @@ in the input translate to large changes in the returned hash code
610610
—ideally, flipping one bit in the representation of the input value results
611611
in each bit of the hash code flipping with probability 50%. Libraries
612612
such as link:../../../unordered/index.html[Boost.Unordered] consult this trait
613-
to determine if the supplied hash function is of high quality.
613+
to determine if the supplied hash function is of high quality.
614614
`boost::hash` for `std::basic_string<Ch>` and `std::basic_string_view<Ch>`
615615
has this trait set to `true` when `Ch` is an integral type (this includes
616616
`std::string` and `std::string_view`, among others).
617617
Users can set this trait for a particular `Hash` type by:
618618

619619
* Inserting the nested `is_avalanching` typedef in the class definition
620-
if they have access to its source code.
620+
if they have access to its source code.
621621
* Writing a specialization of `boost::hash_is_avalanching`
622622
for `Hash`.
623623

include/boost/container_hash/hash_is_avalanching.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ struct hash_is_avalanching_impl<Hash, typename std::enable_if< ((void)Hash::is_a
4444
{
4545
// Hash::is_avalanching is not a type: we don't define value to produce
4646
// a compile error downstream
47-
};
47+
};
4848

4949
} // namespace hash_detail
5050

0 commit comments

Comments
 (0)