very minor doc fix (#7539)

This commit is contained in:
Gavin King 2023-11-13 21:20:53 +01:00 committed by GitHub
parent 78c9ccf64f
commit e6d5c72ec6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -151,7 +151,7 @@ List<Book> books =
books.forEach(book -> book.getAuthors().forEach(author -> out.println(book.title + " by " + author.name)));
----
This code is _very_ inefficient, resulting, by default, in the execution of _N+1_ `select` statements, where _n_ is the number of ``Book``s.
This code is _very_ inefficient, resulting, by default, in the execution of _N+1_ `select` statements, where _N_ is the number of ``Book``s.
Let's see how we can improve on that.