summaryrefslogtreecommitdiffhomepage
path: root/src/enum.c
diff options
context:
space:
mode:
authorYukihiro Matsumoto <[email protected]>2012-05-09 22:11:53 +0900
committerYukihiro Matsumoto <[email protected]>2012-05-09 22:11:53 +0900
commit6faab394d721011080355b1d0fa14d925a2a7734 (patch)
treec3e16981a62b6d34ce1b6d1b88d6557af3b40d54 /src/enum.c
parentbd8d91066663dde3ac17c50bca318984d0b3507b (diff)
downloadmruby-6faab394d721011080355b1d0fa14d925a2a7734.tar.gz
mruby-6faab394d721011080355b1d0fa14d925a2a7734.zip
remove duplicated document comment
Diffstat (limited to 'src/enum.c')
-rw-r--r--src/enum.c11
1 files changed, 0 insertions, 11 deletions
diff --git a/src/enum.c b/src/enum.c
index b3f482ca3..0a58cc5bb 100644
--- a/src/enum.c
+++ b/src/enum.c
@@ -6,17 +6,6 @@
#include "mruby.h"
-/*
- * The <code>Enumerable</code> mixin provides collection classes with
- * several traversal and searching methods, and with the ability to
- * sort. The class must provide a method <code>each</code>, which
- * yields successive members of the collection. If
- * <code>Enumerable#max</code>, <code>#min</code>, or
- * <code>#sort</code> is used, the objects in the collection must also
- * implement a meaningful <code><=></code> operator, as these methods
- * rely on an ordering between members of the collection.
- */
-
void
mrb_init_enumerable(mrb_state *mrb)
{