From 49898044ae3444ded8e92fe3202d8e76d205681d Mon Sep 17 00:00:00 2001 From: forax Date: Tue, 25 Oct 2022 10:57:01 +0200 Subject: [PATCH] fix typo --- orm/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/orm/README.md b/orm/README.md index 43e0469..ab2bd88 100755 --- a/orm/README.md +++ b/orm/README.md @@ -242,7 +242,7 @@ ORM.transaction(dataSource, () -> { For now, we will implement only the method `findAll()` that returns an empty list For the methods `equals`, `hashCode` and `toString`, we will throw an UnsupportedOperationException For all other methods, we will throw a IllegalStateException. - Check that the tests in the nested class "Q5" all pass. + Check that the tests in the nested class "Q6" all pass. 7. In order to finish the implementation `repository.findAll()`, we need several helper methods.