Skip to content

Commit 65b15ca

Browse files
committed
readme changes
1 parent e1b1ba0 commit 65b15ca

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

README.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,9 @@ This is a kotlin multiplatform runtime [infix](https://en.wikipedia.org/wiki/Inf
77
### Operators
88
The library supports the following operators and special symbols:
99

10-
* `+`, `-`, `*`, `/`, `% (modulo)`, `^ (exponentiation)` - mathematical operators
10+
* `+`, `-`, `*`, `/` - mathematical operators
11+
* `%` - [modulo](https://en.wikipedia.org/wiki/Modulo_operation)
12+
* `^` - exponentiation. `a^b` means `a raised to the power of b`
1113
* `&&`, `||`, `!` - logical 'and', 'or', 'not' operators
1214
* `==`, `!=` - equality operators
1315
* `<`, `>`, `<=`, `>=` - comparison operators
@@ -54,7 +56,7 @@ repositories {
5456
}
5557

5658
dependencies {
57-
implementation("com.github.murzagalin:multiplatform-expressions-evaluator:0.9.0")
59+
implementation("com.github.murzagalin:multiplatform-expressions-evaluator:0.9.1")
5860
}
5961
```
6062
Groovy
@@ -66,7 +68,7 @@ repositories {
6668
}
6769
6870
dependencies {
69-
implementation "com.github.murzagalin:multiplatform-expressions-evaluator:0.9.0"
71+
implementation "com.github.murzagalin:multiplatform-expressions-evaluator:0.9.1"
7072
}
7173
```
7274

0 commit comments

Comments
 (0)