Skip to content

Commit

Permalink
few "-> hash to -> hash table" clarifications
Browse files Browse the repository at this point in the history
plain "hash" might get confusing once we get to crypto docs
  • Loading branch information
zmyrgel committed Jul 30, 2019
1 parent e3a76bb commit acc6e96
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions doc/reference/core-builtin.md
Original file line number Diff line number Diff line change
Expand Up @@ -728,7 +728,7 @@ Returns true if the object *obj* is an immediate value.

### make-hash-table
``` scheme
(make-hash-table . options) -> hash
(make-hash-table . options) -> hash table
options:
size: size
Expand All @@ -745,15 +745,15 @@ Creates a hash table.

### make-hash-table-eq
``` scheme
(make-hash-table-eq . options) -> hash
(make-hash-table-eq . options) -> hash table
```

Creates a hash table using `eq?` as the test function so this is equivalent to
`(make-hash-table test: eq? options ...)`.

### make-hash-table-eqv
``` scheme
(make-hash-table-eqv . options) -> hash
(make-hash-table-eqv . options) -> hash table
```

Creates a hash table using `eqv?` as the test function so this is equivalent to `(make-hash-table test: eqv? options ...)`.
Expand Down

0 comments on commit acc6e96

Please sign in to comment.