Skip to content

Fix typo #2244

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/docs.jpa/src/main/asciidoc/annotations_ref.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -2670,7 +2670,7 @@ link:#CEGHFAIB[Table 2-20] describes this annotation's elements.

* `ASSUME_EXISTENCE`
* `ASSUME_NON_EXISTENCE`
* `CHECK_CHACHE`
* `CHECK_CACHE`
* `CHECK_DATABASE`

|`CHECK_CACHE`
Expand All @@ -2690,7 +2690,7 @@ guarantees or does not care about the existence check.
* `ASSUME_NON_EXISTENCE` – Assume that the object does not exist. You
may use this option if the application guarantees or does not care about
the existence check. This will always force an `INSERT` operation.
* `CHECK_CHACHE` – If the object's primary key does not include `null`
* `CHECK_CACHE` – If the object's primary key does not include `null`
and it is in the cache, then it must exist.
* `CHECK_DATABASE` – Perform a `SELECT` on the database.

Expand Down