fix minor typo

This commit is contained in:
Gavin 2023-05-28 01:54:25 +02:00 committed by Christian Beikov
parent dc00b6c0ea
commit ddee1a1c19
1 changed files with 2 additions and 2 deletions

View File

@ -224,8 +224,8 @@ List<BookSummary> results =
BookSummary.class)
.getResultList();
for (var result : results) {
String title = result.title();
String preamble = resukt.summary();
String title = result.title();
String preamble = result.summary();
}
----