summaryrefslogtreecommitdiff
path: root/hash.c
diff options
context:
space:
mode:
authorMarcus Stollsteimer <sto.mar@web.de>2020-02-19 20:59:21 +0100
committerMarcus Stollsteimer <sto.mar@web.de>2020-02-19 20:59:21 +0100
commiteed7235e33ab55209c33bf255949be4f26b8c7e2 (patch)
treeb5fd352deab7333f678a746aed928c5275480f39 /hash.c
parent97e8212a767689c2acb201d3da365ba4d599cf96 (diff)
hash.c: [DOC] fix typos
Diffstat (limited to 'hash.c')
-rw-r--r--hash.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/hash.c b/hash.c
index 33bc754c37..8145dde6bc 100644
--- a/hash.c
+++ b/hash.c
@@ -5542,7 +5542,7 @@ env_reject_bang(VALUE ehash)
*
* Yields each environment variable name and its value as a 2-element Array,
* deleting each environment variable for which the block returns a truthy value,
- * and returning ENV (regardless or whether any deletions):
+ * and returning ENV (regardless of whether any deletions):
* ENV.replace('foo' => '0', 'bar' => '1', 'baz' => '2')
* ENV.delete_if { |name, value| name.start_with?('b') } # => ENV
* ENV # => {"foo"=>"0"}
@@ -6003,7 +6003,7 @@ env_assoc(VALUE env, VALUE key)
* ENV.value?(value) -> true or false
* ENV.has_value?(value) -> true or false
*
- * Returns +true+ if +value+ is the value for some environment variable name, +false+ otherwise.:
+ * Returns +true+ if +value+ is the value for some environment variable name, +false+ otherwise:
* ENV.replace('foo' => '0', 'bar' => '1')
* ENV.value?('0') # => true
* ENV.has_value?('0') # => true
@@ -6090,7 +6090,7 @@ env_rassoc(VALUE dmy, VALUE obj)
* ENV.key('2') # => nil
* Raises an exception if +value+ is invalid:
* ENV.key(Object.new) # raises TypeError (no implicit conversion of Object into String)
- * See {Invalid Names and Values}[#class-ENV-label-Invalid-Names+and+Values]
+ * See {Invalid Names and Values}[#class-ENV-label-Invalid-Names+and+Values].
*/
static VALUE
env_key(VALUE dmy, VALUE value)