From 19c530d8c17bb5f123bb12b4f993654b6dba8729 Mon Sep 17 00:00:00 2001 From: marcandre Date: Sun, 13 Jan 2013 00:19:10 +0000 Subject: [PATCH] * enumerator.c: Fix rdoc typo (thanks to Yutaka HARA) git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@38793 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- enumerator.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/enumerator.c b/enumerator.c index c563fa41bb..a4ad915464 100644 --- a/enumerator.c +++ b/enumerator.c @@ -198,7 +198,7 @@ enumerator_ptr(VALUE obj) * must not exceed the number expected by +method+ * * If a block is given, it will be used to calculate the size of - * the enumerator (see Enumerator#size=). + * the enumerator (see Enumerator#size). * * === Example *