Skip to content

Commit

Permalink
Fixed typo in asterisk documentation (#90)
Browse files Browse the repository at this point in the history
Closes #89.
  • Loading branch information
redcatbear authored Sep 2, 2020
1 parent 9d2c2b1 commit 8db1c6b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions doc/user_guide/statements/select.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ A `SELECT` statement can contain one or more derived columns. Here we describe a
- The `asterisk / *` is a wildcard representing all fields. Create an asterisk using the `all()` method.

```java
final Select selectWithOneField = factory.select().all();
final Select selectWithAllFields = factory.select().all();
```

- The factory method `function(...)` adds a pre-defined function to a statement that evaluates to a value expression.
Expand Down Expand Up @@ -172,4 +172,4 @@ Select select = factory.select().all();
select.from().table("t");
select.orderBy(column("t", "city"), column("t", "price"))
.nullsFirst().asc();
```
```

0 comments on commit 8db1c6b

Please sign in to comment.