Compare commits

...

2 Commits

Author SHA1 Message Date
Peter Dimov b2cb43dca0 Fix typo in README.md 2026-04-01 21:54:13 +03:00
Peter Dimov 828a53d8a4 Fix typo in intro.adoc 2026-04-01 19:58:55 +03:00
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -8,7 +8,7 @@ by C++11 as `std::hash`, and several support facilities (`hash_combine`,
`boost::hash` supports most standard types and some user-defined types out of
the box, and is extensible; it's possible for a user-defined type `X` to make
iself hashable via `boost::hash<X>` by defining an appropriate overload of the
itself hashable via `boost::hash<X>` by defining an appropriate overload of the
function `hash_value`.
See [the documentation of the library](https://www.boost.org/libs/container_hash)
+1 -1
View File
@@ -44,7 +44,7 @@ Out of the box, `boost::hash` supports
* `std::variant`, `std::monostate`.
`boost::hash` is extensible; it's possible for a user-defined type `X` to make
iself hashable via `boost::hash<X>` by defining an appropriate overload of the
itself hashable via `boost::hash<X>` by defining an appropriate overload of the
function `hash_value`. Many, if not most, Boost types already contain the
necessary support.