lib/regexp-examples/repeaters.rb in regexp-examples-1.3.1 vs lib/regexp-examples/repeaters.rb in regexp-examples-1.3.2
- old
+ new
@@ -90,9 +90,9 @@
end
private
def smallest(x, y)
- (x < y) ? x : y
+ x < y ? x : y
end
end
end