diff --git a/core/src/main/scala/com/github/tminglei/slickpg/trgm/README.md b/core/src/main/scala/com/github/tminglei/slickpg/trgm/README.md index 5456a553..0f65b05a 100644 --- a/core/src/main/scala/com/github/tminglei/slickpg/trgm/README.md +++ b/core/src/main/scala/com/github/tminglei/slickpg/trgm/README.md @@ -4,7 +4,7 @@ Supported Search Oper/Functions | Slick Oper/Function | PG Oper/Function | Description | | ------------------- | ---------------- | --------------------------------------------------------------------------------- | | % | % | Returns true if its arguments have a similarity that is greater than the current similarity threshold set by pg_trgm.similarity_threshold | -| < | <% | Returns true if its first argument has the similar word in the second argument and they have a similarity that is greater than the current word similarity threshold set by pg_trgm.word_similarity_threshold | +| <% | <% | Returns true if its first argument has the similar word in the second argument and they have a similarity that is greater than the current word similarity threshold set by pg_trgm.word_similarity_threshold | | %> | %> | Commutator of the <% operator | | <-> | <-> | Returns the "distance" between the arguments, that is one minus the similarity() value | | <<-> | <<-> | Returns the "distance" between the arguments, that is one minus the word_similarity() value |