diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2023-12-11 20:21:36 -0800 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2023-12-11 20:21:36 -0800 |
commit | 8d21380003fb01ce01df4b062c50cc6cded0d02c (patch) | |
tree | f0a46e131861842a8a72c9bc6c32a562497ee99e | |
parent | 13644263eaad63806454dc6670c901a553fdc204 (diff) | |
download | txr-8d21380003fb01ce01df4b062c50cc6cded0d02c.tar.gz txr-8d21380003fb01ce01df4b062c50cc6cded0d02c.tar.bz2 txr-8d21380003fb01ce01df4b062c50cc6cded0d02c.zip |
hash: small fix in function self name.
* hash.c (gethash_d): Use gethash-d as self rather than
gethash_d for consistency.
-rw-r--r-- | hash.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1163,7 +1163,7 @@ val gethash_e(val self, val hash, val key) val gethash_d(val hash, val key) { - return gethash_e(lit("gethash_d"), hash, key); + return gethash_e(lit("gethash-d"), hash, key); } val gethash(val hash, val key) |