From acc6e9619966e33e959459ea87e1ffa6d3f672c3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Timo=20Myyr=C3=A4?= Date: Tue, 30 Jul 2019 09:04:08 +0300 Subject: [PATCH] few "-> hash to -> hash table" clarifications plain "hash" might get confusing once we get to crypto docs --- doc/reference/core-builtin.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/doc/reference/core-builtin.md b/doc/reference/core-builtin.md index ef97aa37f..6a5746f63 100644 --- a/doc/reference/core-builtin.md +++ b/doc/reference/core-builtin.md @@ -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 @@ -745,7 +745,7 @@ 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 @@ -753,7 +753,7 @@ Creates a hash table using `eq?` as the test function so this is equivalent to ### 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 ...)`.