diff options
author | Burdette Lamar <[email protected]> | 2024-02-14 09:47:42 -0600 |
---|---|---|
committer | GitHub <[email protected]> | 2024-02-14 10:47:42 -0500 |
commit | 65f54355406a25f352241406967d038fc72d4737 (patch) | |
tree | 36662f5337ba27cbfd6bb75e364cf3f81eaaf842 /hash.c | |
parent | f1136e73e853b60f8cfe463aba50a6771a7eac11 (diff) |
[DOC] Doc compliance (#9955)
Diffstat (limited to 'hash.c')
-rw-r--r-- | hash.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -6682,7 +6682,7 @@ static const rb_data_type_t env_data_type = { * # Raises SyntaxError (syntax error, unexpected ':', expecting =>): * h = {0: 'zero'} * - * Hash value can be omitted, meaning that value will be fetched from the context + * +Hash+ value can be omitted, meaning that value will be fetched from the context * by the name of the key: * * x = 0 @@ -6733,7 +6733,7 @@ static const rb_data_type_t env_data_type = { * * You can create a +Hash+ by calling method Hash.new. * - * Create an empty Hash: + * Create an empty +Hash+: * * h = Hash.new * h # => {} @@ -6741,7 +6741,7 @@ static const rb_data_type_t env_data_type = { * * You can create a +Hash+ by calling method Hash.[]. * - * Create an empty Hash: + * Create an empty +Hash+: * * h = Hash[] * h # => {} |