Whitespace fix

This commit is contained in:
Lukas Eder 2021-11-04 16:29:36 +01:00
parent 91295db719
commit 1cb77e5303
2 changed files with 3 additions and 3 deletions

View File

@ -1455,7 +1455,7 @@ extends
* also to express the "ARRAY contains" operator. For example: <code><pre>
* // Use this expression
* val(new Integer[] { 1, 2, 3 }).contains(new Integer[] { 1, 2 })
*
*
* // ... to render this SQL
* ARRAY[1, 2, 3] @&gt; ARRAY[1, 2]
* </pre></code>
@ -1484,7 +1484,7 @@ extends
* also to express the "ARRAY contains" operator. For example: <code><pre>
* // Use this expression
* val(new Integer[] { 1, 2, 3 }).contains(new Integer[] { 1, 2 })
*
*
* // ... to render this SQL
* ARRAY[1, 2, 3] @&gt; ARRAY[1, 2]
* </pre></code>

View File

@ -71,7 +71,7 @@ public interface LikeEscapeStep extends Condition {
* Add the <code>ESCAPE</code> clause to the <code>LIKE</code> function.
* <p>
* For example:
*
*
* <code><pre>
* some_column LIKE 'A!%%' ESCAPE '!'
* </pre></code>