Skip to content

Commit

Permalink
docs: add ln function description
Browse files Browse the repository at this point in the history
  • Loading branch information
jbl428 committed Jan 31, 2024
1 parent 19aa609 commit 95c5670
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions docs/en/jpql-with-kotlin-jdsl/expressions.md
Original file line number Diff line number Diff line change
Expand Up @@ -226,6 +226,7 @@ Use the following functions to build arithmetic functions:
* ABS (abs)
* CEILING (ceiling)
* FLOOR (floor)
* LN (ln)
* ROUND (round)
* SQRT (sqrt)

Expand All @@ -236,16 +237,15 @@ ceiling(path(Book::price))

floor(path(Book::price))

ln(path(Book::price))

round(path(Book::price), 2)

sqrt(path(Book::price))
```

| Function | DSL function |
|----------|--------------|
| EXP | not yet |
| FLOOR | not yet |
| LN | not yet |
| MOD | not yet |
| POWER | not yet |
| SIGN | not yet |
Expand Down
6 changes: 3 additions & 3 deletions docs/ko/jpql-with-kotlin-jdsl/expressions.md
Original file line number Diff line number Diff line change
Expand Up @@ -222,6 +222,7 @@ locate("Book", path(Book::title))
* ABS (abs)
* CEILING (ceiling)
* FLOOR (floor)
* LN (ln)
* ROUND (round)
* SQRT (sqrt)

Expand All @@ -232,16 +233,15 @@ ceiling(path(Book::price))

floor(path(Book::price))

ln(path(Book::price))

round(path(Book::price), 2)

sqrt(path(Book::price))
```

| Function | DSL function |
|----------|--------------|
| EXP | not yet |
| FLOOR | not yet |
| LN | not yet |
| MOD | not yet |
| POWER | not yet |
| SIGN | not yet |
Expand Down

0 comments on commit 95c5670

Please sign in to comment.