summaryrefslogtreecommitdiff
path: root/hash.c
diff options
context:
space:
mode:
authorSteven Nunez <octosteve@github.com>2022-02-11 17:12:30 -0500
committerHiroshi SHIBATA <hsbt@ruby-lang.org>2022-02-12 10:43:27 +0900
commit68be9a9ae88ab6e28f7c479564ff5a963a3686ad (patch)
treedf7870060d6d6784929225d71f749f5712721744 /hash.c
parentee3b7a1a8c17d3ef0b634e9f383ce303fe36e5e1 (diff)
Fix Typo
Notes
Notes: Merged: https://github.com/ruby/ruby/pull/5548
Diffstat (limited to 'hash.c')
-rw-r--r--hash.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/hash.c b/hash.c
index b5a711f2a9..ad8ce23e2e 100644
--- a/hash.c
+++ b/hash.c
@@ -7089,7 +7089,7 @@ static const rb_data_type_t env_data_type = {
* #[]=, #store:: Associates a given key with a given value.
* #merge:: Returns the hash formed by merging each given hash into a copy of +self+.
* #merge!, #update:: Merges each given hash into +self+.
- * #replace:: Replaces the entire contents of +self+ with the contents of a givan hash.
+ * #replace:: Replaces the entire contents of +self+ with the contents of a given hash.
*
* ==== Methods for Deleting
*