Skip to content

Commit

Permalink
Fix warnings about wrong/missing javadoc tags (#981)
Browse files Browse the repository at this point in the history
  • Loading branch information
tryone144 authored Dec 15, 2024
1 parent 9489f2c commit db0bbba
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1150,7 +1150,7 @@ public TBigInteger pow(int exp) {
* Returns a new {@code BigInteger} whose value is the biggest integer
* {@code n} such that {@code n * n <= this}.
*
* @implNote This implementation follows the ideas in Henry S. Warren, Jr.,
* This implementation follows the ideas in Henry S. Warren, Jr.,
* Hacker's Delight (2nd ed.) (Addison Wesley, 2013), 279-282.
*
* @return {@code floor(sqrt(this))}
Expand Down
2 changes: 1 addition & 1 deletion jso/apis/src/main/java/org/teavm/jso/core/JSPromise.java
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ public native <V> JSPromise<V> flatThen(JSMapping<T, ? extends JSPromise<V>> onF
@JSMethod("finally")
public native JSPromise<T> onSettled(JSSupplier<Object> onFinally);

/** Interface for the return values of {@ref #allSettled()}. */
/** Interface for the return values of {@link #allSettled(JsArrayReader)}. */
public interface FulfillmentValue<T> extends JSObject {
@JSProperty
@NoSideEffects
Expand Down

0 comments on commit db0bbba

Please sign in to comment.