aboutsummaryrefslogtreecommitdiffstats
path: root/enumerator.c
diff options
context:
space:
mode:
authorkazu <kazu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-08-20 15:33:59 +0000
committerkazu <kazu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-08-20 15:33:59 +0000
commita41276d8ba33bb70e6aa49c5d15915bd19136041 (patch)
tree89610b4c7109bdc92c8199cfdd11b7a2ad2e2c7b /enumerator.c
parentd9aad2a5a3d8173baccf84eb3bf117012cea37dc (diff)
downloadruby-a41276d8ba33bb70e6aa49c5d15915bd19136041.tar.gz
Remove extra semicolon
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@64480 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'enumerator.c')
-rw-r--r--enumerator.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/enumerator.c b/enumerator.c
index 20be5e858b..59e1633325 100644
--- a/enumerator.c
+++ b/enumerator.c
@@ -2283,7 +2283,7 @@ lazy_drop_while(VALUE obj)
static int
lazy_uniq_check(VALUE chain, VALUE memos, long memo_index)
{
- VALUE hash = rb_ary_entry(memos, memo_index);;
+ VALUE hash = rb_ary_entry(memos, memo_index);
if (NIL_P(hash)) {
hash = rb_obj_hide(rb_hash_new());