Skip to content

Commit 92b1ae7

Browse files
committedNov 21, 2014
Missing semicolons
1 parent c369385 commit 92b1ae7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎opal/corelib/enumerable.rb

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,15 +16,15 @@ def all?(&block)
1616
result = false;
1717
return $breaker;
1818
}
19-
}
19+
};
2020
}
2121
else {
2222
self.$each.$$p = function(obj) {
2323
if (arguments.length == 1 && #{Opal.falsy?(`obj`)}) {
2424
result = false;
2525
return $breaker;
2626
}
27-
}
27+
};
2828
}
2929
3030
self.$each();

0 commit comments

Comments
 (0)
Please sign in to comment.