From ff0a9230cf0a691315a56418f8df528c874fa861 Mon Sep 17 00:00:00 2001 From: Jacob Dreesen Date: Tue, 10 Dec 2019 08:57:50 +0100 Subject: [PATCH] Remove superfluous space --- components/string.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/string.rst b/components/string.rst index eff09aa0361..a3b92c8b605 100644 --- a/components/string.rst +++ b/components/string.rst @@ -211,7 +211,7 @@ Methods to Change Case The methods of all string classes are case-sensitive by default. You can perform case-insensitive operations with the ``ignoreCase()`` method:: - u('abc')->indexOf('B'); // null + u('abc')->indexOf('B'); // null u('abc')->ignoreCase()->indexOf('B'); // 1 Methods to Append and Prepend