diff options
| author | Eli Zaretskii | 2018-05-21 21:08:39 +0300 |
|---|---|---|
| committer | Eli Zaretskii | 2018-05-21 21:08:39 +0300 |
| commit | ef4aec14d159b1ac66f4bca97955fc6a9a9a07d6 (patch) | |
| tree | 5db449a56f5ed3b575cdd42365e7ba5132d21001 | |
| parent | 2981952b6ceaf3d93ed018fc7b7b2034cd10194b (diff) | |
| download | emacs-ef4aec14d159b1ac66f4bca97955fc6a9a9a07d6.tar.gz emacs-ef4aec14d159b1ac66f4bca97955fc6a9a9a07d6.zip | |
; * doc/lispref/hash.texi (Defining Hash): Fix typos.
| -rw-r--r-- | doc/lispref/hash.texi | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/lispref/hash.texi b/doc/lispref/hash.texi index ddd46a55edd..f7d33eafa34 100644 --- a/doc/lispref/hash.texi +++ b/doc/lispref/hash.texi | |||
| @@ -293,8 +293,8 @@ This function returns a hash code for Lisp object @var{obj}. Its | |||
| 293 | result reflects identity of @var{obj}, but not its contents. | 293 | result reflects identity of @var{obj}, but not its contents. |
| 294 | 294 | ||
| 295 | If two objects @var{obj1} and @var{obj2} are @code{eq}, then | 295 | If two objects @var{obj1} and @var{obj2} are @code{eq}, then |
| 296 | @code{(xhash @var{obj1})} and @code{(xhash @var{obj2})} are the same | 296 | @code{(sxhash-eq @var{obj1})} and @code{(sxhash-eq @var{obj2})} are |
| 297 | integer. | 297 | the same integer. |
| 298 | @end defun | 298 | @end defun |
| 299 | 299 | ||
| 300 | @defun sxhash-eql obj | 300 | @defun sxhash-eql obj |
| @@ -304,8 +304,8 @@ except for the case where the object is a float number, in which case | |||
| 304 | hash code is generated for the value. | 304 | hash code is generated for the value. |
| 305 | 305 | ||
| 306 | If two objects @var{obj1} and @var{obj2} are @code{eql}, then | 306 | If two objects @var{obj1} and @var{obj2} are @code{eql}, then |
| 307 | @code{(xhash @var{obj1})} and @code{(xhash @var{obj2})} are the same | 307 | @code{(sxhash-eql @var{obj1})} and @code{(sxhash-eql @var{obj2})} are |
| 308 | integer. | 308 | the same integer. |
| 309 | @end defun | 309 | @end defun |
| 310 | 310 | ||
| 311 | This example creates a hash table whose keys are strings that are | 311 | This example creates a hash table whose keys are strings that are |