Skip to content

Commit

Permalink
typo (#794)
Browse files Browse the repository at this point in the history
  • Loading branch information
vU97N authored and dg committed Jan 6, 2020
1 parent 11cd22d commit 4948c6c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion cs/database-explorer.texy
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ Selection správně zpracovává i záporné podmínky a umí pracovat také s p

```php
$table->where('id', []); // id IS null AND false
$table->where('id NOT', []); // id IS null OR false
$table->where('id NOT', []); // id IS null OR true
$table->where('NOT (id ?)', $ids); // NOT (id IS null AND false)

// toto způsobí výjimku, tato syntax není podporovaná
Expand Down
2 changes: 1 addition & 1 deletion en/database-explorer.texy
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ Selection correctly handles also negative conditions, works for empty arrays too

```php
$table->where('id', []); // id IS null AND false
$table->where('id NOT', []); // id IS null OR false
$table->where('id NOT', []); // id IS null OR true
$table->where('NOT (id ?)', $ids); // NOT (id IS null AND false)

// this will throws an exception, this syntax is not supported
Expand Down

0 comments on commit 4948c6c

Please sign in to comment.