@@ -675,6 +675,7 @@ public Long arrLen(String key, Path path) {
675675 * popping from (defaults to -1, meaning the last element). Out of range indices are
676676 * rounded to their respective array ends. Popping an empty array yields null.
677677 *
678+ * @param <T> type of data represented at {@code key}
678679 * @param key the key of the value
679680 * @param clazz target class to serialize results
680681 * @param path the path of the value
@@ -703,6 +704,7 @@ public <T> T arrPop(String key, Class<T> clazz, Path path, Long index) {
703704 * popping from (defaults to -1, meaning the last element). Out of range indices are
704705 * rounded to their respective array ends. Popping an empty array yields null.
705706 *
707+ * @param <T> type of data represented at {@code key}
706708 * @param key the key of the value
707709 * @param clazz target class to serialize results
708710 * @param path the path of the value
@@ -719,6 +721,7 @@ public <T> T arrPop(String key, Class<T> clazz, Path path) {
719721 * popping from (defaults to -1, meaning the last element). Out of range indices are
720722 * rounded to their respective array ends. Popping an empty array yields null.
721723 *
724+ * @param <T> type of data represented at {@code key}
722725 * @param key the key of the value
723726 * @param clazz target class to serialize results
724727 * @return the popped JSON value.
@@ -730,10 +733,10 @@ public <T> T arrPop(String key, Class<T> clazz) {
730733 /**
731734 * Trim an array so that it contains only the specified inclusive range of elements.
732735 *
733- * This command is extremely forgiving and using it with out of range indexes will not
734- * produce an error. If start is larger than the array's size or start > stop , the result
735- * will be an empty array. If start is < 0 then it will be treated as 0. If stop is larger
736- * than the end of the array, it will be treated like the last element in it.
736+ * This command is extremely forgiving and using it with out of range indexes will not produce
737+ * an error. If start is larger than the array's size or start > stop, the result will be an
738+ * empty array. If start is < 0 then it will be treated as 0. If stop is larger than the end
739+ * of the array, it will be treated like the last element in it.
737740 *
738741 * @param key the key of the value
739742 * @param path the path of the value
0 commit comments