Skip to content

Commit 5bd244d

Browse files
committed
whitespace fix
Signed-off-by: Gavin King <[email protected]>
1 parent 7f3c73b commit 5bd244d

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

documentation/src/main/asciidoc/introduction/Introduction.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -518,8 +518,8 @@ We need a place to put the annotation, so let's move our query method to a new c
518518
[source,java]
519519
----
520520
@CheckHQL // validate named queries at compile time
521-
@NamedQuery(name="findBooksByTitle",
522-
query="from Book where title like :title order by title")
521+
@NamedQuery(name = "findBooksByTitle",
522+
query = "from Book where title like :title order by title")
523523
class Queries {
524524
525525
static List<Book> findBooksByTitleWithPagination(Session session,

documentation/src/main/asciidoc/introduction/Processor.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -123,8 +123,8 @@ For example, if we had:
123123
[source,java]
124124
----
125125
@CheckHQL // validate named queries at compile time
126-
@NamedQuery(name="findBooksByTitle",
127-
query="from Book where title like :title order by title")
126+
@NamedQuery(name = "findBooksByTitle",
127+
query = "from Book where title like :title order by title")
128128
@Entity
129129
class Book { ... }
130130
----

0 commit comments

Comments
 (0)