From f31c16333511eccf77e3a732710576a8adda0575 Mon Sep 17 00:00:00 2001 From: Otavio Santana Date: Wed, 17 May 2023 11:20:21 +0100 Subject: [PATCH] docs: update template to use ID instead of 'id' Signed-off-by: Otavio Santana --- api/nosql-core/src/main/java/jakarta/nosql/Template.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/api/nosql-core/src/main/java/jakarta/nosql/Template.java b/api/nosql-core/src/main/java/jakarta/nosql/Template.java index ba499fa53..207106fd3 100644 --- a/api/nosql-core/src/main/java/jakarta/nosql/Template.java +++ b/api/nosql-core/src/main/java/jakarta/nosql/Template.java @@ -97,7 +97,7 @@ public interface Template { Iterable update(Iterable entities); /** - * Finds by Id. + * Finds by ID or key. * * @param type the entity class * @param id the id value @@ -109,7 +109,7 @@ public interface Template { Optional find(Class type, K id); /** - * Deletes by Id. + * Deletes by ID or key. * * @param type the entity class * @param id the id value