diff options
| author | Gerd Moellmann | 1999-10-25 16:12:21 +0000 |
|---|---|---|
| committer | Gerd Moellmann | 1999-10-25 16:12:21 +0000 |
| commit | 711331aa7581c03106fd302c7b8fe80609593c7d (patch) | |
| tree | 5b9d32c02c8046704d9595e84a035ef1e7c4c83d | |
| parent | 75f3230bfa24b43ed6cd6df06859ff40093428b4 (diff) | |
| download | emacs-711331aa7581c03106fd302c7b8fe80609593c7d.tar.gz emacs-711331aa7581c03106fd302c7b8fe80609593c7d.zip | |
Fix some typos.
| -rw-r--r-- | lispref/hash.texi | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/lispref/hash.texi b/lispref/hash.texi index 7e2c3c3751c..6a46b01a8b2 100644 --- a/lispref/hash.texi +++ b/lispref/hash.texi | |||
| @@ -59,7 +59,7 @@ arguments. The arguments should consist of alternating keywords | |||
| 59 | them. | 59 | them. |
| 60 | 60 | ||
| 61 | Several keywords make sense in @code{make-hash-table}, but the only two | 61 | Several keywords make sense in @code{make-hash-table}, but the only two |
| 62 | that you really need to know about are @code{:test} and @code{:weak}. | 62 | that you really need to know about are @code{:test} and @code{:weakness}. |
| 63 | 63 | ||
| 64 | @table @code | 64 | @table @code |
| 65 | @item :test @var{test} | 65 | @item :test @var{test} |
| @@ -106,7 +106,7 @@ both are weak). | |||
| 106 | @item :size @var{size} | 106 | @item :size @var{size} |
| 107 | This specifies a hint for how many associations you plan to store in the | 107 | This specifies a hint for how many associations you plan to store in the |
| 108 | hash table. If you know the approximate number, you can make things a | 108 | hash table. If you know the approximate number, you can make things a |
| 109 | little more efficient by specifying it this way. If you specify to | 109 | little more efficient by specifying it this way. If you specify too |
| 110 | small a size, the hash table will grow automatically when necessary, but | 110 | small a size, the hash table will grow automatically when necessary, but |
| 111 | doing that takes some extra time, | 111 | doing that takes some extra time, |
| 112 | 112 | ||
| @@ -279,8 +279,8 @@ itself is copied---the keys and values are shared. | |||
| 279 | This function returns the actual number of entries in @var{table}. | 279 | This function returns the actual number of entries in @var{table}. |
| 280 | @end defun | 280 | @end defun |
| 281 | 281 | ||
| 282 | @tindex hash-table-rehash-test | 282 | @tindex hash-table-test |
| 283 | @defun hash-table-rehash-test table | 283 | @defun hash-table-test table |
| 284 | This returns the @var{test} value that was given when @var{table} was | 284 | This returns the @var{test} value that was given when @var{table} was |
| 285 | created, to specify how to hash and compare keys. See | 285 | created, to specify how to hash and compare keys. See |
| 286 | @code{make-hash-table} (@pxref{Creating Hash}). | 286 | @code{make-hash-table} (@pxref{Creating Hash}). |
| @@ -302,7 +302,7 @@ This returns the rehash size of @var{table}. | |||
| 302 | This returns the rehash threshold of @var{table}. | 302 | This returns the rehash threshold of @var{table}. |
| 303 | @end defun | 303 | @end defun |
| 304 | 304 | ||
| 305 | @tindex hash-table-rehash-size | 305 | @tindex hash-table-size |
| 306 | @defun hash-table-rehash-size table | 306 | @defun hash-table-size table |
| 307 | This returns the current nominal size of @var{table}. | 307 | This returns the current nominal size of @var{table}. |
| 308 | @end defun | 308 | @end defun |