lib/muflax/array.rb in muflax-0.3.4 vs lib/muflax/array.rb in muflax-0.3.5
- old
+ new
@@ -13,11 +13,11 @@
yield [a, b]
end
end
end
- def first ; self[0] ; end
- def second ; self[1] ; end
- def third ; self[2] ; end
- def fourth ; self[3] ; end
- def fifth ; self[4] ; end
+ # silly accessors
+ def second ; self[1] ; end
+ def third ; self[2] ; end
+ def fourth ; self[3] ; end
+ def fifth ; self[4] ; end
end