Skip to content

Commit

Permalink
docs: update template to use ID instead of 'id'
Browse files Browse the repository at this point in the history
Signed-off-by: Otavio Santana <otaviopolianasantana@gmail.com>
  • Loading branch information
otaviojava committed May 17, 2023
1 parent 2277092 commit f31c163
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions api/nosql-core/src/main/java/jakarta/nosql/Template.java
Expand Up @@ -97,7 +97,7 @@ public interface Template {
<T> Iterable<T> update(Iterable<T> entities);

/**
* Finds by Id.
* Finds by ID or key.
*
* @param type the entity class
* @param id the id value
Expand All @@ -109,7 +109,7 @@ public interface Template {
<T, K> Optional<T> find(Class<T> type, K id);

/**
* Deletes by Id.
* Deletes by ID or key.
*
* @param type the entity class
* @param id the id value
Expand Down

0 comments on commit f31c163

Please sign in to comment.