Skip to content

Commit

Permalink
minor javadoc typos: the same like -> the same as
Browse files Browse the repository at this point in the history
  • Loading branch information
virgo47 committed Sep 16, 2021
1 parent fccd1f3 commit ead84fe
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
* Delta processor for multi-value property represented by single array column.
*
* @param <V> type of value in schema
* @param <E> type of element in DB (can be the same like `V`)
* @param <E> type of element in DB (can be the same as `V`)
*/
public class ArrayItemDeltaProcessor<V, E> extends FinalValueDeltaProcessor<E> {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
* Our filter "contains" (meaning substring) is *not* supported.
*
* @param <T> type of value in schema
* @param <E> type of element in DB (can be the same like `T`)
* @param <E> type of element in DB (can be the same as `T`)
*/
public class ArrayPathItemFilterProcessor<T, E>
extends SinglePathItemFilterProcessor<T, ArrayPath<E[], E>> {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
* as {@link QueryException}, other runtime exceptions are not intercepted.
*
* @param <T> type of filter value
* @param <V> type of value after conversion (can by the same like T)
* @param <V> type of value after conversion (can be the same as T)
*/
public abstract class ValueFilterValues<T, V> {

Expand Down

0 comments on commit ead84fe

Please sign in to comment.