From 6f1c9beffe1082c09a35a5717db09f5a4bac0170 Mon Sep 17 00:00:00 2001 From: Dawid Weiss Date: Wed, 22 May 2024 19:23:41 +0200 Subject: [PATCH] Javadoc correction. --- .../hppc/KTypeVTypeAssociativeContainer.java | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/hppc/src/main/templates/com/carrotsearch/hppc/KTypeVTypeAssociativeContainer.java b/hppc/src/main/templates/com/carrotsearch/hppc/KTypeVTypeAssociativeContainer.java index 753a59e8b..562f326ec 100644 --- a/hppc/src/main/templates/com/carrotsearch/hppc/KTypeVTypeAssociativeContainer.java +++ b/hppc/src/main/templates/com/carrotsearch/hppc/KTypeVTypeAssociativeContainer.java @@ -90,18 +90,16 @@ public interface KTypeVTypeAssociativeContainer /** * Applies a given procedure to all keys-value pairs in this container. * Returns the argument (any subclass of {@link KTypeVTypeProcedure}. This - * lets the caller to call methods of the argument by chaining the call (even - * if the argument is an anonymous type) to retrieve computed values, for - * example. + * lets the caller call methods of the argument by chaining the call (even + * if the argument is an anonymous type) to retrieve computed values. */ public > T forEach(T procedure); /** * Applies a given predicate to all keys-value pairs in this container. * Returns the argument (any subclass of {@link KTypeVTypePredicate}. This - * lets the caller to call methods of the argument by chaining the call (even - * if the argument is an anonymous type) to retrieve computed values, for - * example. + * lets the caller call methods of the argument by chaining the call (even + * if the argument is an anonymous type) to retrieve computed values. * * The iteration is continued as long as the predicate returns * true.