--- old/src/share/classes/java/nio/file/Files.java Mon Oct 1 10:50:56 2012 +++ new/src/share/classes/java/nio/file/Files.java Mon Oct 1 10:50:55 2012 @@ -510,7 +510,7 @@ *
      *     DirectoryStream.Filter<Path> filter = new DirectoryStream.Filter<Path>() {
      *         public boolean accept(Path file) throws IOException {
-     *             return (Files.size(file) > 8192L);
+     *             return (Files.size(file) > 8192L);
      *         }
      *     };
      *     Path dir = ...
@@ -1592,7 +1592,7 @@
      *     Path path = ...
      *     AclFileAttributeView view = Files.getFileAttributeView(path, AclFileAttributeView.class);
      *     if (view != null) {
-     *         List<AclEntry> acl = view.getAcl();
+     *         List<AclEntry> acl = view.getAcl();
      *         :
      *     }
      *