diff --git a/classlib/src/main/java/org/teavm/classlib/java/math/TBigInteger.java b/classlib/src/main/java/org/teavm/classlib/java/math/TBigInteger.java index b02770837..0b283156e 100644 --- a/classlib/src/main/java/org/teavm/classlib/java/math/TBigInteger.java +++ b/classlib/src/main/java/org/teavm/classlib/java/math/TBigInteger.java @@ -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))} diff --git a/jso/apis/src/main/java/org/teavm/jso/core/JSPromise.java b/jso/apis/src/main/java/org/teavm/jso/core/JSPromise.java index dbc87e642..4e3ba10d8 100644 --- a/jso/apis/src/main/java/org/teavm/jso/core/JSPromise.java +++ b/jso/apis/src/main/java/org/teavm/jso/core/JSPromise.java @@ -104,7 +104,7 @@ public native JSPromise flatThen(JSMapping> onF @JSMethod("finally") public native JSPromise onSettled(JSSupplier onFinally); - /** Interface for the return values of {@ref #allSettled()}. */ + /** Interface for the return values of {@link #allSettled(JsArrayReader)}. */ public interface FulfillmentValue extends JSObject { @JSProperty @NoSideEffects