From 4a971302f7278625686077eb93b2ef920de265c1 Mon Sep 17 00:00:00 2001 From: "Daniel St. Jules" Date: Sat, 25 Jul 2015 20:07:23 -0700 Subject: [PATCH] Comment fix --- README.md | 2 +- src/Stringy.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 2fb334f..8bad8a4 100644 --- a/README.md +++ b/README.md @@ -713,7 +713,7 @@ s('fòôbàř')->slice(3, -1); // 'bà' Splits the string with the provided regular expression, returning an array of Stringy objects. An optional integer $limit will truncate the -numbers of results returned. +results. ```php s('foo,bar,baz')->split(',', 2); // ['foo', 'bar'] diff --git a/src/Stringy.php b/src/Stringy.php index 14c66ec..2a700a6 100644 --- a/src/Stringy.php +++ b/src/Stringy.php @@ -1335,7 +1335,7 @@ class Stringy implements \Countable, \IteratorAggregate, \ArrayAccess /** * Splits the string with the provided regular expression, returning an * array of Stringy objects. An optional integer $limit will truncate the - * numbers of results returned. + * results. * * @param string $pattern The regex with which to split the string * @param int $limit Optional maximum number of results to return