mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-26 22:34:27 +02:00
8316038: Fix doc typos in java.io.Console and java.util.Scanner
Reviewed-by: bpb, naoto, iris
This commit is contained in:
parent
94800781ea
commit
f55e799491
2 changed files with 7 additions and 7 deletions
|
@ -128,8 +128,8 @@ public sealed class Console implements Flushable permits ProxyingConsole {
|
||||||
* For simple applications requiring only line-oriented reading, use
|
* For simple applications requiring only line-oriented reading, use
|
||||||
* {@link #readLine}.
|
* {@link #readLine}.
|
||||||
* <p>
|
* <p>
|
||||||
* The bulk read operations {@link java.io.Reader#read(char[]) read(char[]) },
|
* The bulk read operations {@link java.io.Reader#read(char[]) read(char[])},
|
||||||
* {@link java.io.Reader#read(char[], int, int) read(char[], int, int) } and
|
* {@link java.io.Reader#read(char[], int, int) read(char[], int, int)} and
|
||||||
* {@link java.io.Reader#read(java.nio.CharBuffer) read(java.nio.CharBuffer)}
|
* {@link java.io.Reader#read(java.nio.CharBuffer) read(java.nio.CharBuffer)}
|
||||||
* on the returned object will not read in characters beyond the line
|
* on the returned object will not read in characters beyond the line
|
||||||
* bound for each invocation, even if the destination buffer has space for
|
* bound for each invocation, even if the destination buffer has space for
|
||||||
|
@ -151,7 +151,7 @@ public sealed class Console implements Flushable permits ProxyingConsole {
|
||||||
*
|
*
|
||||||
* @param fmt
|
* @param fmt
|
||||||
* A format string as described in <a
|
* A format string as described in <a
|
||||||
* href="../util/Formatter.html#syntax">Format string syntax</a>
|
* href="../util/Formatter.html#syntax">Format string syntax</a>.
|
||||||
*
|
*
|
||||||
* @param args
|
* @param args
|
||||||
* Arguments referenced by the format specifiers in the format
|
* Arguments referenced by the format specifiers in the format
|
||||||
|
@ -306,7 +306,7 @@ public sealed class Console implements Flushable permits ProxyingConsole {
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Reads a password or passphrase from the console with echoing disabled
|
* Reads a password or passphrase from the console with echoing disabled.
|
||||||
*
|
*
|
||||||
* @throws IOError
|
* @throws IOError
|
||||||
* If an I/O error occurs.
|
* If an I/O error occurs.
|
||||||
|
@ -321,7 +321,7 @@ public sealed class Console implements Flushable permits ProxyingConsole {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Flushes the console and forces any buffered output to be written
|
* Flushes the console and forces any buffered output to be written
|
||||||
* immediately .
|
* immediately.
|
||||||
*/
|
*/
|
||||||
public void flush() {
|
public void flush() {
|
||||||
throw newUnsupportedOperationException();
|
throw newUnsupportedOperationException();
|
||||||
|
|
|
@ -189,7 +189,7 @@ import sun.util.locale.provider.ResourceBundleBasedAdapter;
|
||||||
*
|
*
|
||||||
* <p>The localized formats are defined in terms of the following parameters,
|
* <p>The localized formats are defined in terms of the following parameters,
|
||||||
* which for a particular locale are taken from that locale's {@link
|
* which for a particular locale are taken from that locale's {@link
|
||||||
* java.text.DecimalFormat DecimalFormat} object, {@code df}, and its and
|
* java.text.DecimalFormat DecimalFormat} object, {@code df}, and its
|
||||||
* {@link java.text.DecimalFormatSymbols DecimalFormatSymbols} object,
|
* {@link java.text.DecimalFormatSymbols DecimalFormatSymbols} object,
|
||||||
* {@code dfs}.
|
* {@code dfs}.
|
||||||
*
|
*
|
||||||
|
@ -1844,7 +1844,7 @@ public final class Scanner implements Iterator<String>, Closeable {
|
||||||
* {@code NoSuchElementException} by using a pattern that can
|
* {@code NoSuchElementException} by using a pattern that can
|
||||||
* match nothing, e.g., {@code sc.skip("[ \t]*")}.
|
* match nothing, e.g., {@code sc.skip("[ \t]*")}.
|
||||||
*
|
*
|
||||||
* @param pattern a string specifying the pattern to skip over
|
* @param pattern the pattern to skip over
|
||||||
* @return this scanner
|
* @return this scanner
|
||||||
* @throws NoSuchElementException if the specified pattern is not found
|
* @throws NoSuchElementException if the specified pattern is not found
|
||||||
* @throws IllegalStateException if this scanner is closed
|
* @throws IllegalStateException if this scanner is closed
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue