summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorgogotanaka <gogotanaka@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-06-01 05:38:59 +0000
committergogotanaka <gogotanaka@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-06-01 05:38:59 +0000
commit8305152dc00934a6fc79f30aa0ad6e34bb01a332 (patch)
tree3b9ddb106e58cad2f44ff6c229bea8c6ca72a6fc
parent2351d88f5116aafe58b7fb8b2d74be224fa9012a (diff)
enum.c: [DOC] Fix typo [ci skip][Fix GH-904]
Patch provided by @jwworth git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@50710 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--enum.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/enum.c b/enum.c
index e15ca340b3..31989f63fa 100644
--- a/enum.c
+++ b/enum.c
@@ -1700,7 +1700,7 @@ minmax_ii(RB_BLOCK_CALL_FUNC_ARGLIST(i, _memo))
* enum.minmax -> [min, max]
* enum.minmax { |a, b| block } -> [min, max]
*
- * Returns two elements array which contains the minimum and the
+ * Returns a two element array which contains the minimum and the
* maximum value in the enumerable. The first form assumes all
* objects implement <code>Comparable</code>; the second uses the
* block to return <em>a <=> b</em>.