changeset 4920:82144054d2d8

7068856: (fs) Typo in Files.isSameFile() javadoc 7099208: (fs) Files.newBufferedReader has typo in javadoc Reviewed-by: forax
author alanb
date Wed, 11 Jan 2012 13:07:15 +0000
parents 31a1fc60a895
children 96fe796fd242
files src/share/classes/java/nio/file/Files.java src/share/classes/java/nio/file/Path.java
diffstat 2 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/src/share/classes/java/nio/file/Files.java	Wed Jan 11 10:52:25 2012 +0000
+++ b/src/share/classes/java/nio/file/Files.java	Wed Jan 11 13:07:15 2012 +0000
@@ -1431,7 +1431,7 @@
      * <li>It is <i>transitive</i>: for three {@code Paths}
      *     {@code f}, {@code g}, and {@code h}, if {@code isSameFile(f,g)} returns
      *     {@code true} and {@code isSameFile(g,h)} returns {@code true}, then
-     *     {@code isSameFile(g,h)} will return return {@code true}.
+     *     {@code isSameFile(f,h)} will return return {@code true}.
      * </ul>
      *
      * @param   path
--- a/src/share/classes/java/nio/file/Path.java	Wed Jan 11 10:52:25 2012 +0000
+++ b/src/share/classes/java/nio/file/Path.java	Wed Jan 11 13:07:15 2012 +0000
@@ -72,7 +72,7 @@
  * directory and is UTF-8 encoded.
  * <pre>
  *     Path path = FileSystems.getDefault().getPath("logs", "access.log");
- *     BufferReader reader = Files.newBufferedReader(path, StandardCharsets.UTF_8);
+ *     BufferedReader reader = Files.newBufferedReader(path, StandardCharsets.UTF_8);
  * </pre>
  *
  * <a name="interop"><h4>Interoperability</h4></a>