1
0
Fork 0
mirror of https://github.com/treffynnon/sqlstyle.guide.git synced 2025-03-09 12:49:51 -05:00

Merge pull request #7 from jroitgrund/patch-1

Correct spelling of SQL commenting section
This commit is contained in:
Simon Holywell 2016-10-11 12:29:16 +10:00 committed by GitHub
commit ba9b116865

View file

@ -33,7 +33,7 @@ Based on a work at [http://www.sqlstyle.guide][self].
* Keep code succinct and devoid of redundant SQL—such as unnecessary quoting or
parentheses or `WHERE` clauses that can otherwise be derived.
* Include comments in SQL code where necessary. Use the C style opening `/*` and
closing `*/` where possible otherwise preceed comments with `--` and finish
closing `*/` where possible otherwise precede comments with `--` and finish
them with a new line.
```sql