Skip to content

Commit 6f1c9be

Browse files
committed
Javadoc correction.
1 parent fa7fb32 commit 6f1c9be

File tree

1 file changed

+4
-6
lines changed

1 file changed

+4
-6
lines changed

hppc/src/main/templates/com/carrotsearch/hppc/KTypeVTypeAssociativeContainer.java

+4-6
Original file line numberDiff line numberDiff line change
@@ -90,18 +90,16 @@ public interface KTypeVTypeAssociativeContainer<KType, VType>
9090
/**
9191
* Applies a given procedure to all keys-value pairs in this container.
9292
* Returns the argument (any subclass of {@link KTypeVTypeProcedure}. This
93-
* lets the caller to call methods of the argument by chaining the call (even
94-
* if the argument is an anonymous type) to retrieve computed values, for
95-
* example.
93+
* lets the caller call methods of the argument by chaining the call (even
94+
* if the argument is an anonymous type) to retrieve computed values.
9695
*/
9796
public <T extends KTypeVTypeProcedure<? super KType, ? super VType>> T forEach(T procedure);
9897

9998
/**
10099
* Applies a given predicate to all keys-value pairs in this container.
101100
* Returns the argument (any subclass of {@link KTypeVTypePredicate}. This
102-
* lets the caller to call methods of the argument by chaining the call (even
103-
* if the argument is an anonymous type) to retrieve computed values, for
104-
* example.
101+
* lets the caller call methods of the argument by chaining the call (even
102+
* if the argument is an anonymous type) to retrieve computed values.
105103
*
106104
* The iteration is continued as long as the predicate returns
107105
* <code>true</code>.

0 commit comments

Comments
 (0)