8284922: Fix some doc-comment issues on methods with package access in JDK API

Reviewed-by: darcy, iris, bpb
This commit is contained in:
Pavel Rappo 2022-04-18 17:35:48 +00:00
parent 6e36c4550a
commit d3d71ea289
3 changed files with 6 additions and 5 deletions

View file

@ -5876,6 +5876,7 @@ System.out.println((int) f0.invokeExact("x", "y")); // 2
* V adapter(A... a, B... b) {
* T t = target(a...);
* return filter(b..., t);
* }
* }</pre></blockquote>
* <p>
* If the filter handle is a unary function, then this method behaves like {@link #filterReturnValue(MethodHandle, MethodHandle)}.

View file

@ -1,5 +1,5 @@
/*
* Copyright (c) 1996, 2019, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 1996, 2022, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
@ -76,7 +76,7 @@ public class MissingResourceException extends RuntimeException {
* the key for the missing resource.
* @param cause
* the cause (which is saved for later retrieval by the
* {@link Throwable.getCause()} method). (A null value is
* {@link Throwable#getCause()} method). (A null value is
* permitted, and indicates that the cause is nonexistent
* or unknown.)
*/