From 3b2732c1defd968ce24f7c745d080484622721d0 Mon Sep 17 00:00:00 2001 From: Gavin King Date: Thu, 21 Mar 2024 08:24:21 +0100 Subject: [PATCH] improve two sentences of spec - fix a typo - be more explicit --- spec/src/main/asciidoc/repository.asciidoc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/spec/src/main/asciidoc/repository.asciidoc b/spec/src/main/asciidoc/repository.asciidoc index 136ae221b..67e2a079b 100644 --- a/spec/src/main/asciidoc/repository.asciidoc +++ b/spec/src/main/asciidoc/repository.asciidoc @@ -97,8 +97,8 @@ Jakarta Data defines a hierarchy of built-in interfaces which user-defined repos .... -A repository which extends a built-in supertype usually acts as a home for operations acting in a single entity type. -This entity type is designated via the first generic type variable of the generic supertype. +A repository which extends a built-in supertype usually acts as a home for operations acting on a single entity type called the _primary entity type_ of the repository. +The primary entity type is determined by the argument to the first generic type variable of the generic supertype. - The `BasicRepository` interface includes some of the most common operations applying to a single type of entity, including `save()`, `delete()`, and `findById()`.