@@ -118,16 +118,16 @@ escaped with double quotes:
118118* ``\P ``
119119
120120Finally, there are other cases when the strings must be quoted, no matter if
121- using single or double quotes:
121+ you're using single or double quotes:
122122
123- * when the string is ``true `` or ``false `` (otherwise, it would be treated as a
123+ * When the string is ``true `` or ``false `` (otherwise, it would be treated as a
124124 boolean value);
125- * when the string is ``null `` or ``~ `` (otherwise, it would be considered as a
125+ * When the string is ``null `` or ``~ `` (otherwise, it would be considered as a
126126 ``null `` value);
127- * when the string looks like a number, such as integers (e.g. ``2 ``, ``14 ``, etc.),
127+ * When the string looks like a number, such as integers (e.g. ``2 ``, ``14 ``, etc.),
128128 floats (e.g. ``2.6 ``, ``14.9 ``) and exponential numbers (e.g. ``12e7 ``, etc.)
129129 (otherwise, it would be treated as a numeric value);
130- * when the string looks like a date (e.g. ``2014-12-31 ``) (otherwise it would be
130+ * When the string looks like a date (e.g. ``2014-12-31 ``) (otherwise it would be
131131 automatically converted into a Unix timestamp).
132132
133133When a string contains line breaks, you can use the literal style, indicated
0 commit comments