Remove unnecessary hashes from Dict docs

This commit is contained in:
Fábio Beirão 2023-05-26 10:08:14 +02:00
parent fb141af353
commit 0c3bb35d66
No known key found for this signature in database
GPG key ID: 13FD3A2130278AAE

View file

@ -80,7 +80,7 @@ interface Dict
## vacated spot.
##
## This move is done as a performance optimization, and it lets [remove] have
## [constant time complexity](https://en.wikipedia.org/wiki/Time_complexity#Constant_time). ##
## [constant time complexity](https://en.wikipedia.org/wiki/Time_complexity#Constant_time).
##
## Dict is inspired by [IndexMap](https://docs.rs/indexmap/latest/indexmap/map/struct.IndexMap.html).
## The internal implementation of a dictionary is similar to [absl::flat_hash_map](https://abseil.io/docs/cpp/guides/container).