On Nov 16, 2007 6:12 PM, Trans <transfire / gmail.com> wrote: > > > On Nov 16, 11:29 am, "Nikolai Weibull" <n... / bitwi.se> wrote: > > On Nov 16, 2007 3:19 PM, David A. Black <dbl... / rubypal.com> wrote: > > > > > I'd rather see: > > > > > str.downcase! > > > str.split... > > > > Not the first time that I complain about this, but I'd rather see: > > > > str.downcase.split... > > dont you mean? > > str.downcase!.split... I was way too sloppy. It should have been str = str.downcase.split.... That is, I don't like the mutating versions.