OpenJDK / portola / portola
changeset 20536:2e22d22c52ed
8025983: Typo in Javadoc of Files.isRegularFile()
Reviewed-by: mchung, chegar
author | alanb |
---|---|
date | Mon, 07 Oct 2013 11:48:55 +0100 |
parents | cc85c8626435 |
children | ab8ccd264bf3 |
files | jdk/src/share/classes/java/nio/file/Files.java jdk/src/share/classes/java/nio/file/Path.java |
diffstat | 2 files changed, 4 insertions(+), 4 deletions(-) [+] |
line wrap: on
line diff
--- a/jdk/src/share/classes/java/nio/file/Files.java Sat Oct 05 05:30:40 2013 -0700 +++ b/jdk/src/share/classes/java/nio/file/Files.java Mon Oct 07 11:48:55 2013 +0100 @@ -2128,7 +2128,7 @@ /** * Tests whether a file is a symbolic link. * - * <p> Where is it required to distinguish an I/O exception from the case + * <p> Where it is required to distinguish an I/O exception from the case * that the file is not a symbolic link then the file attributes can be * read with the {@link #readAttributes(Path,Class,LinkOption[]) * readAttributes} method and the file type tested with the {@link @@ -2164,7 +2164,7 @@ * of the link is read. If the option {@link LinkOption#NOFOLLOW_LINKS * NOFOLLOW_LINKS} is present then symbolic links are not followed. * - * <p> Where is it required to distinguish an I/O exception from the case + * <p> Where it is required to distinguish an I/O exception from the case * that the file is not a directory then the file attributes can be * read with the {@link #readAttributes(Path,Class,LinkOption[]) * readAttributes} method and the file type tested with the {@link @@ -2201,7 +2201,7 @@ * of the link is read. If the option {@link LinkOption#NOFOLLOW_LINKS * NOFOLLOW_LINKS} is present then symbolic links are not followed. * - * <p> Where is it required to distinguish an I/O exception from the case + * <p> Where it is required to distinguish an I/O exception from the case * that the file is not a regular file then the file attributes can be * read with the {@link #readAttributes(Path,Class,LinkOption[]) * readAttributes} method and the file type tested with the {@link
--- a/jdk/src/share/classes/java/nio/file/Path.java Sat Oct 05 05:30:40 2013 -0700 +++ b/jdk/src/share/classes/java/nio/file/Path.java Mon Oct 07 11:48:55 2013 +0100 @@ -315,7 +315,7 @@ * and parent directory. In such file systems all occurrences of "{@code .}" * are considered redundant. If a "{@code ..}" is preceded by a * non-"{@code ..}" name then both names are considered redundant (the - * process to identify such names is repeated until is it no longer + * process to identify such names is repeated until it is no longer * applicable). * * <p> This method does not access the file system; the path may not locate