From 29e451e21c6bf68a05a3da1333e6c1a93768dfc5 Mon Sep 17 00:00:00 2001 From: jbranchaud Date: Fri, 13 Feb 2015 19:29:55 -0600 Subject: [PATCH] Clarify some text in the latest til. --- ruby/limit-split.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ruby/limit-split.md b/ruby/limit-split.md index a04a5cf..09fcb56 100644 --- a/ruby/limit-split.md +++ b/ruby/limit-split.md @@ -3,7 +3,7 @@ I've only ever used Ruby's [`String#split`](http://ruby-doc.org//core-2.2.0/String.html#method-i-split) with the delimiter argument (e.g. `"this string has spaces".split(" ")`). -This method has another argument that can be specified, the `limit` +However, this method has another argument you can specify; the `limit` argument. With `limit`, you can *limit* the number of times that the split happens.