diff --git a/Coding-style-policy.md b/Coding-style-policy.md index df486cd..2a31a72 100644 --- a/Coding-style-policy.md +++ b/Coding-style-policy.md @@ -232,7 +232,7 @@ _Reference_: [`Generic.Strings.UnnecessaryStringConcat`](https://github.com/squi # Whenever possible use single quote strings -PHP supports both single quote strings and double quote strings. For pure text you must use single quote strings for consistency. Double quote strings are only allowed for special characters (i.e. `"\n"`) or inlined variables (i.e. "My name is {$name}"); +PHP supports both single quote strings and double quote strings. For pure text you must use single quote strings for consistency. Double quote strings are only allowed for special characters (i.e. `"\n"`) or inlined variables (i.e. `"My name is {$name}"`);
Example