Skip to content

Commit 318b4df

Browse files
committed
Fix spelling
1 parent 8abf49e commit 318b4df

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

_posts/2025-06-18-hibernate7-on-quarkus.adoc

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,10 @@ After the deprecation of the Hibernate Criteria API, developers were still missi
6363
[source,java]
6464
----
6565
var books =
66-
SelectionSpecification.create(Book.class, "from Book where discontinued = false")
66+
SelectionSpecification.create(Book.class,
67+
"""
68+
from Book where discontinued = false
69+
""")
6770
.restrict(Restriction.startsWith(Book_.title, "hibernate"))
6871
.sort(Order.desc(Book_.title))
6972
.fetch(Path.from(Book.class).to(Book_publisher))

0 commit comments

Comments
 (0)