Skip to content

Commit 1fa10e3

Browse files
committed
update prefaces
Signed-off-by: Gavin King <[email protected]>
1 parent 6480154 commit 1fa10e3

File tree

3 files changed

+15
-10
lines changed

3 files changed

+15
-10
lines changed

documentation/src/main/asciidoc/querylanguage/Concepts.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -645,8 +645,8 @@ List<Object[]> results =
645645
Object[].class)
646646
.getResultList();
647647
for (var result : results) {
648-
String title = (String) result[0];
649-
String preamble = (String) result[1];
648+
String title = (String) result[0];
649+
String preamble = (String) result[1];
650650
}
651651
----
652652

documentation/src/main/asciidoc/querylanguage/Preface.adoc

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,14 @@ include::{shared-attributes-dir}/url-attributes.adoc[]
55
[[preface]]
66
== Preface
77

8-
Hibernate 6 is a major redesign of the world's most popular and feature-rich ORM solution.
9-
The redesign has touched almost every subsystem of Hibernate, including the APIs, mapping annotations, and, above all else, the query language.
8+
Hibernate 6 was a major redesign of the world's most popular and feature-rich ORM solution.
9+
The redesign touched almost every subsystem of Hibernate, including the APIs, mapping annotations, and, above all else, the query language.
10+
This was the second time Hibernate Query Language had been completely reimplemented from scratch, but the first time in more than fifteen years.
11+
Hibernate 7 rests on this foundation.
1012

11-
This is the second time Hibernate Query Language has been completely reimplemented from scratch, but the first time in more than fifteen years.
1213
In this new incarnation, HQL is far more powerful, and the HQL compiler much more robust.
14+
Today, HQL has a feature set to match that of modern dialects of SQL, and is able to take full advantage of the power of modern SQL databases.
1315

14-
At long last, HQL has a feature set to match that of modern dialects of SQL, and is able to take full advantage of the power of modern SQL databases.
16+
This document is a reference guide to the full feature set of the language, and is the only up-to-date source for those who wish to learn how to write HQL effectively in Hibernate 6 and Hibernate 7.
1517

16-
This document is a reference guide to the full feature set of the language, and is the only up-to-date source for those who wish to learn how to write HQL effectively in Hibernate 6.
17-
18-
If you are unfamiliar with Hibernate, be sure to first read link:{doc-introduction-url}[Introduction to Hibernate] or check out the link:{doc-quick-start-url}[Quick Start].
18+
If you are unfamiliar with Hibernate, be sure to first read the link:{doc-introduction-url}[Short Guide to Hibernate].

documentation/src/main/asciidoc/repositories/Preface.adoc

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,9 @@ On the other hand, the programming model for interacting with the database is qu
1616
Therefore, this document will show you a different way to use Hibernate.
1717

1818
The coverage of Jakarta Data is intentionally inexhaustive.
19-
If exhaustion is sought, this document should be read in conjunction with the specification, which we've worked hard to keep readable.
19+
If exhaustion is sought, this document should be read in conjunction with the specification, which we've worked hard to keep readable.
20+
21+
If you are unfamiliar with Hibernate, this document should be read in conjunction with:
22+
23+
- the link:{doc-introduction-url}[Short Guide to Hibernate], and
24+
- the link:{doc-query-language-url}[Guide to Hibernate Query Language].

0 commit comments

Comments
 (0)