Skip to content

Commit

Permalink
Fix document error (#609)
Browse files Browse the repository at this point in the history
  • Loading branch information
zuisong authored Dec 1, 2021
1 parent 900a943 commit 5a26e3f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/src/orchid/resources/wiki/operator/comparisons.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Comparisons
Pebble provides the following comparison operators: `==`, `!=`, `<`, `>`, `<=`, `>=`. All of them except for `==`
are equivalent to their Java counterparts. The `==` operator uses `ava.util.Objects.equals(a, b)` behind the
are equivalent to their Java counterparts. The `==` operator uses `java.util.Objects.equals(a, b)` behind the
scenes to perform null safe value comparisons.

> `equals` is an alias for `==`
Expand Down

0 comments on commit 5a26e3f

Please sign in to comment.