mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-27 06:45:07 +02:00
8273616: Fix trivial doc typos in the java.base module
Reviewed-by: jrose, iris, lancea, dfuchs, rriggs
This commit is contained in:
parent
7c26ddb575
commit
b4b121018d
34 changed files with 55 additions and 55 deletions
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
* Copyright (c) 2007, 2017, Oracle and/or its affiliates. All rights reserved.
|
||||
* Copyright (c) 2007, 2021, 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
|
||||
|
@ -66,7 +66,7 @@ import java.io.IOException;
|
|||
* directory. The {@link #getRootDirectories getRootDirectories} method may be
|
||||
* used to iterate over the root directories in the file system. A file system
|
||||
* is typically composed of one or more underlying {@link FileStore file-stores}
|
||||
* that provide the storage for the files. Theses file stores can also vary in
|
||||
* that provide the storage for the files. These file stores can also vary in
|
||||
* the features they support, and the file attributes or <em>meta-data</em> that
|
||||
* they associate with files.
|
||||
*
|
||||
|
|
|
@ -1841,7 +1841,7 @@ public final class Files {
|
|||
* installed, its {@link SecurityManager#checkRead(String) checkRead}
|
||||
* method is invoked to check read access to the file. If this
|
||||
* method is invoked to read security sensitive attributes then the
|
||||
* security manager may be invoke to check for additional permissions.
|
||||
* security manager may be invoked to check for additional permissions.
|
||||
*/
|
||||
public static <A extends BasicFileAttributes> A readAttributes(Path path,
|
||||
Class<A> type,
|
||||
|
@ -2075,7 +2075,7 @@ public final class Files {
|
|||
* installed, its {@link SecurityManager#checkRead(String) checkRead}
|
||||
* method denies read access to the file. If this method is invoked
|
||||
* to read security sensitive attributes then the security manager
|
||||
* may be invoke to check for additional permissions.
|
||||
* may be invoked to check for additional permissions.
|
||||
*/
|
||||
public static Map<String,Object> readAttributes(Path path, String attributes,
|
||||
LinkOption... options)
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
* Copyright (c) 2007, 2013, Oracle and/or its affiliates. All rights reserved.
|
||||
* Copyright (c) 2007, 2021, 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
|
||||
|
@ -301,7 +301,7 @@ public interface SecureDirectoryStream<T>
|
|||
* @param options
|
||||
* options indicating how symbolic links are handled
|
||||
*
|
||||
* @return a new file attribute view of the specified type bound to a
|
||||
* @return a new file attribute view of the specified type bound to
|
||||
* this directory stream, or {@code null} if the attribute view
|
||||
* type is not available
|
||||
*
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
* Copyright (c) 2007, 2020, Oracle and/or its affiliates. All rights reserved.
|
||||
* Copyright (c) 2007, 2021, 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
|
||||
|
@ -177,8 +177,8 @@ public interface UserDefinedFileAttributeView
|
|||
* will not have changed.
|
||||
*
|
||||
* <p> If an attribute of the given name already exists then its value is
|
||||
* replaced. If the attribute does not exist then it is created. If it
|
||||
* implementation specific if a test to check for the existence of the
|
||||
* replaced. If the attribute does not exist then it is created. It
|
||||
* is implementation specific if a test to check for the existence of the
|
||||
* attribute and the creation of attribute are atomic with respect to other
|
||||
* file system activities.
|
||||
*
|
||||
|
|
|
@ -1129,7 +1129,7 @@ public abstract class FileSystemProvider {
|
|||
* installed, its {@link SecurityManager#checkRead(String) checkRead}
|
||||
* method denies read access to the file. If this method is invoked
|
||||
* to read security sensitive attributes then the security manager
|
||||
* may be invoke to check for additional permissions.
|
||||
* may be invoked to check for additional permissions.
|
||||
*/
|
||||
public abstract Map<String,Object> readAttributes(Path path, String attributes,
|
||||
LinkOption... options)
|
||||
|
|
|
@ -75,7 +75,7 @@ public abstract class FileTypeDetector {
|
|||
* <p> The means by which this method determines the file type is highly
|
||||
* implementation specific. It may simply examine the file name, it may use
|
||||
* a file <a href="../attribute/package-summary.html">attribute</a>,
|
||||
* or it may examines bytes in the file.
|
||||
* or it may examine bytes in the file.
|
||||
*
|
||||
* <p> The probe result is the string form of the value of a
|
||||
* Multipurpose Internet Mail Extension (MIME) content type as
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue