cs3110 / textbook

The CS 3110 Textbook, "OCaml Programming: Correct + Efficient + Beautiful"
Other
740 stars 134 forks source link

Issue on page /chapters/ds/hash_tables.html #61

Closed calciiium closed 2 years ago

calciiium commented 2 years ago

In 8.1.6, I found a small typo: "To support clients who want to hash such structures, Hashtble provides another function hash_param which can be configured to examine more nodes." It should be Hashtbl not Hashtble.

jnfoster commented 2 years ago

Actually, I think Hashtbl is right. See here: https://ocaml.org/api/Hashtbl.html

calciiium commented 2 years ago

Yes I realized this right after creating this issue. Sorry!

calciiium commented 2 years ago

Wait... I'm sorry but should it be Hashtbl not Hashtble...?

I created a pull request for this.