From 3d634fa9add3e65d392c9746d87a2bc30a91e661 Mon Sep 17 00:00:00 2001 From: Oskar Stark Date: Thu, 13 Feb 2020 09:03:12 +0100 Subject: [PATCH] [String] Fix quotes --- components/string.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/string.rst b/components/string.rst index b4118aef113..68fde82de13 100644 --- a/components/string.rst +++ b/components/string.rst @@ -121,7 +121,7 @@ to make your code more concise:: use function Symfony\Component\String\s; // creates a ByteString object - $foo = s('\xfe\xff'); + $foo = s("\xfe\xff"); // creates a UnicodeString object $foo = s('अनुच्छेद');