From 6bf9dbb051d327a3aa62e2a7276672f408ffa698 Mon Sep 17 00:00:00 2001 From: Gavin King Date: Sun, 21 Apr 2024 23:01:29 +0200 Subject: [PATCH] fix a typo Signed-off-by: Gavin King --- documentation/src/main/asciidoc/introduction/Interacting.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/documentation/src/main/asciidoc/introduction/Interacting.adoc b/documentation/src/main/asciidoc/introduction/Interacting.adoc index d2d367ea02..7f12936bba 100644 --- a/documentation/src/main/asciidoc/introduction/Interacting.adoc +++ b/documentation/src/main/asciidoc/introduction/Interacting.adoc @@ -374,7 +374,7 @@ Hibernate has a slightly easier way to do it: boolean authorsFetched = Hibernate.isInitialized(book.getAuthors()); ---- -But the static methods of the link:{doc-javadoc-url}org/hibernate/Hibernate.html[`Hibernate`] class let us do a lot more, and it's worth getting a bit familiar them. +But the static methods of the link:{doc-javadoc-url}org/hibernate/Hibernate.html[`Hibernate`] class let us do a lot more, and it's worth getting a bit familiar with them. Of particular interest are the operations which let us work with unfetched collections without fetching their state from the database. For example, consider this code: