]> git.mxchange.org Git - friendica.git/commitdiff
Fix Issue #2301 - Typos
authorHypolite Petovan <ben.lort@gmail.com>
Mon, 3 Oct 2016 12:54:34 +0000 (08:54 -0400)
committerHypolite Petovan <ben.lort@gmail.com>
Mon, 3 Oct 2016 12:54:34 +0000 (08:54 -0400)
doc/Developers-Intro.md

index 2a9d87d764b3ebec30bc72896b88f884c67301b2..1e803d652c73d1bf2ba4921b3e310487441419a7 100644 (file)
@@ -55,8 +55,8 @@ For the sake of consistency between contribution and general code readability, F
 
 Here's a few primers if you are new to the PSR-2 coding standards:
  * Indentation is 4 spaces, period.
- * By default, strings are enclosed in single quotes, but fell free to use double quotes if it makes more sense.
- * Operators are wrapped by spaces, e.g. `$var === true`, `$var = 1 + 2` and `'string' . $concat' . 'enation'`
+ * By default, strings are enclosed in single quotes, but feel free to use double quotes if it makes more sense (SQL queries, adding tabs and line feeds).
+ * Operators are wrapped by spaces, e.g. `$var === true`, `$var = 1 + 2` and `'string' . $concat . 'enation'`
  * Braces are mandatory in conditions
  * No closing PHP tag
  * No trailing spaces