Skip to content

Commit

Permalink
improve example and text
Browse files Browse the repository at this point in the history
  • Loading branch information
ChrisHegarty committed Sep 6, 2024
1 parent 1381dea commit 471cbc5
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions lucene/MIGRATE.md
Original file line number Diff line number Diff line change
Expand Up @@ -86,8 +86,9 @@ behind the scenes. It is the responsibility of the caller to call
### RegExp no longer supports the optional complement syntax

The `RegExp` class no longer supports the optional complement syntax, previously
supported by the `~` character. In many cases complement-of-range may be a
suitable replacement, e.g. `[^a-z]`.
supported by the `~` character. In many cases a _complemented bracket expression_,
`[^...]`, may be a suitable replacement, For example, `[^awk]` matches any
character that is not an `a`, `w`, or `k`.

### DocValuesFieldExistsQuery, NormsFieldExistsQuery and KnnVectorFieldExistsQuery removed in favor of FieldExistsQuery (LUCENE-10436)

Expand Down

0 comments on commit 471cbc5

Please sign in to comment.