From cc1e1e77d50833aa5a64f6c399e3def637294f43 Mon Sep 17 00:00:00 2001 From: ydah Date: Thu, 26 Sep 2024 18:54:15 +0900 Subject: [PATCH] s/useable/usable/ --- hash.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hash.c b/hash.c index 13a63f6e9c..3a8dfd5917 100644 --- a/hash.c +++ b/hash.c @@ -6792,7 +6792,7 @@ static const rb_data_type_t env_data_type = { * * ==== User-Defined +Hash+ Keys * - * To be useable as a +Hash+ key, objects must implement the methods hash and eql?. + * To be usable as a +Hash+ key, objects must implement the methods hash and eql?. * Note: this requirement does not apply if the +Hash+ uses #compare_by_identity since comparison will then * rely on the keys' object id instead of hash and eql?. *