%w(cool fast awesome).to_sentence
# "cool, fast, and awesome"
这个"cool, fast, and awesome"真的符合英语语法吗?应该是"cool, fast and awesome"吧,不久前刚刚收到我们 QA 的一个 Ticket 也是讲这个的,and 前不需要再加逗号吧。 当然目前可以用
%w(cool fast awesome).to_sentence :last_word_connector => ' and '
# "cool, fast and awesome"
的方法来解决这个问题,不过 to_sentence 的默认行为是不是该修改下?