We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 754fc82 commit 9628714Copy full SHA for 9628714
contributing/code/standards.rst
@@ -179,9 +179,14 @@ Structure
179
180
* Exception and error message strings must be concatenated using :phpfunction:`sprintf`;
181
182
-* Exception and error messages must not contain backticks (e.g. 'The \`foo\` option ...'),
+* Exception and error messages must not contain backticks,
183
even when referring to a technical element (such as a method or variable name).
184
- Double quotes must be used at all time (e.g. 'The "foo" option ...'),;
+ Double quotes must be used at all time:
185
+
186
+ .. code-block:: diff
187
188
+ - The `foo` option ...
189
+ + The "foo" option ...
190
191
* Exception and error messages must start with a capital letter and finish with a dot ``.``;
192
0 commit comments