Skip to content

Commit

Permalink
Documentation for binary operator separated by spaces #128
Browse files Browse the repository at this point in the history
  • Loading branch information
ThomasPohl committed Jan 29, 2021
1 parent 757bf2a commit a29b8b5
Showing 1 changed file with 3 additions and 4 deletions.
Original file line number Diff line number Diff line change
@@ -1,11 +1,10 @@
<p>Binary operators should always be separated by spaces.</p>
<p>A blank space should follow each comma in any ESQL statement that makes use of commas outside of a string literal.</p>

<h2>Noncompliant Code Example</h2>
<pre>
DECLARE myInt,myInt3 INTEGER 1;
WHEN versionRef<1.2 THEN
</pre>
<h2>Compliant Solution</h2>
<pre>
DECLARE myInt, myInt3 INTEGER 1;
</pre>
WHEN versionRef < 1.2 THEN
</pre>

0 comments on commit a29b8b5

Please sign in to comment.