Possible typo, Base or Core?

http://dev.realworldocaml.org/maps-and-hashtables.html:

" Base 's hash table implementation uses binary trees for the hash-buckets, so this case only leads to logarithmic time, rather than linear for a traditional implementation.

The logarithmic behavior of Core’s hash tables in the presence of hash collisions also helps protect against some denial-of-service attacks"

Is this a typo? Shouldn’t it be “The logarithmic behavior of Base”? Or is also Core’s logarithmic? If so, then shouldn’t it be “Base and Core” also in the first paragraph?

I don’t think Core contains an implementation of a hash table. So the discussion should refer to Base as you suggest.

That’s right.

As always with such things, a PR is welcome!

y

Since I just wanted to create a PR, there is one already and it is already merged.