Skip to content

Commit b4b1210

Browse files
author
Pavel Rappo
committedSep 13, 2021
8273616: Fix trivial doc typos in the java.base module
Reviewed-by: jrose, iris, lancea, dfuchs, rriggs
1 parent 7c26ddb commit b4b1210

34 files changed

+55
-55
lines changed
 

‎src/java.base/share/classes/java/io/CharArrayReader.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ public class CharArrayReader extends Reader {
4646
protected int markedPos = 0;
4747

4848
/**
49-
* The index of the end of this buffer. There is not valid
49+
* The index of the end of this buffer. There is no valid
5050
* data at or beyond this index.
5151
*/
5252
protected int count;

‎src/java.base/share/classes/java/io/CharArrayWriter.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
import java.util.Arrays;
2929

3030
/**
31-
* This class implements a character buffer that can be used as an Writer.
31+
* This class implements a character buffer that can be used as a Writer.
3232
* The buffer automatically grows when data is written to the stream. The data
3333
* can be retrieved using toCharArray() and toString().
3434
* <P>

‎src/java.base/share/classes/java/io/File.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -2022,7 +2022,7 @@ static File generateFile(String prefix, String suffix, File dir)
20222022
} else {
20232023
// Name exceeds the maximum path component length: shorten it
20242024

2025-
// Attempt to shorten the prefix length to no less then 3
2025+
// Attempt to shorten the prefix length to no less than 3
20262026
prefixLength = shortenSubName(prefixLength, excess, 3);
20272027
excess = prefixLength + nusLength + suffixLength - nameMax;
20282028

‎src/java.base/share/classes/java/io/FileCleanable.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2018, 2021, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -65,7 +65,7 @@ final class FileCleanable extends PhantomCleanable<FileDescriptor> {
6565
* Register a Cleanable with the FileDescriptor
6666
* if the FileDescriptor is non-null and valid.
6767
* @implNote
68-
* A exception (OutOfMemoryException) will leave the FileDescriptor
68+
* An exception (OutOfMemoryException) will leave the FileDescriptor
6969
* having allocated resources and leak the fd/handle.
7070
*
7171
* @param fdo the FileDescriptor; may be null

‎src/java.base/share/classes/java/io/ObjectInputStream.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -879,14 +879,14 @@ protected Class<?> resolveProxyClass(String[] interfaces)
879879
* objects is disabled until enableResolveObject is called. The
880880
* enableResolveObject method checks that the stream requesting to resolve
881881
* object can be trusted. Every reference to serializable objects is passed
882-
* to resolveObject. To insure that the private state of objects is not
882+
* to resolveObject. To ensure that the private state of objects is not
883883
* unintentionally exposed only trusted streams may use resolveObject.
884884
*
885885
* <p>This method is called after an object has been read but before it is
886886
* returned from readObject. The default resolveObject method just returns
887887
* the same object.
888888
*
889-
* <p>When a subclass is replacing objects it must insure that the
889+
* <p>When a subclass is replacing objects it must ensure that the
890890
* substituted object is compatible with every field where the reference
891891
* will be stored. Objects whose type is not a subclass of the type of the
892892
* field or array element abort the deserialization by raising an exception

‎src/java.base/share/classes/java/io/ObjectOutputStream.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -568,7 +568,7 @@ protected void annotateProxyClass(Class<?> cl) throws IOException {
568568
* Object (as opposed to type Serializable) to allow for cases where
569569
* non-serializable objects are replaced by serializable ones.
570570
*
571-
* <p>When a subclass is replacing objects it must insure that either a
571+
* <p>When a subclass is replacing objects it must ensure that either a
572572
* complementary substitution must be made during deserialization or that
573573
* the substituted object is compatible with every field where the
574574
* reference will be stored. Objects whose type is not a subclass of the
@@ -1419,7 +1419,7 @@ private void writeEnum(Enum<?> en,
14191419
}
14201420

14211421
/**
1422-
* Writes representation of a "ordinary" (i.e., not a String, Class,
1422+
* Writes representation of an "ordinary" (i.e., not a String, Class,
14231423
* ObjectStreamClass, array, or enum constant) serializable object to the
14241424
* stream.
14251425
*/

‎src/java.base/share/classes/java/lang/AbstractStringBuilder.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2003, 2020, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2003, 2021, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -458,7 +458,7 @@ public int codePointCount(int beginIndex, int endIndex) {
458458
* @param codePointOffset the offset in code points
459459
* @return the index within this sequence
460460
* @throws IndexOutOfBoundsException if {@code index}
461-
* is negative or larger then the length of this sequence,
461+
* is negative or larger than the length of this sequence,
462462
* or if {@code codePointOffset} is positive and the subsequence
463463
* starting with {@code index} has fewer than
464464
* {@code codePointOffset} code points,

‎src/java.base/share/classes/java/lang/Character.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -9313,7 +9313,7 @@ static int codePointCountImpl(char[] a, int offset, int count) {
93139313
* @return the index within the char sequence
93149314
* @throws NullPointerException if {@code seq} is null.
93159315
* @throws IndexOutOfBoundsException if {@code index}
9316-
* is negative or larger then the length of the char sequence,
9316+
* is negative or larger than the length of the char sequence,
93179317
* or if {@code codePointOffset} is positive and the
93189318
* subsequence starting with {@code index} has fewer than
93199319
* {@code codePointOffset} code points, or if

‎src/java.base/share/classes/java/lang/ClassLoader.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -2247,7 +2247,7 @@ public final Package getDefinedPackage(String name) {
22472247
* for consistency with the existing {@link #getPackages} method.
22482248
*
22492249
* @return The array of {@code Package} objects that have been defined by
2250-
* this class loader; or an zero length array if no package has been
2250+
* this class loader; or a zero length array if no package has been
22512251
* defined by this class loader.
22522252
*
22532253
* @jvms 5.3 Creation and Loading

‎src/java.base/share/classes/java/lang/Process.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -440,7 +440,7 @@ public final BufferedWriter outputWriter(Charset charset) {
440440
* terminated and the timeout value is less than, or equal to, zero, then
441441
* this method returns immediately with the value {@code false}.
442442
*
443-
* <p>The default implementation of this methods polls the {@code exitValue}
443+
* <p>The default implementation of this method polls the {@code exitValue}
444444
* to check if the process has terminated. Concrete implementations of this
445445
* class are strongly encouraged to override this method with a more
446446
* efficient implementation.

‎src/java.base/share/classes/java/lang/Throwable.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 1994, 2020, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 1994, 2021, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -862,7 +862,7 @@ private synchronized StackTraceElement[] getOurStackTrace() {
862862
* @param stackTrace the stack trace elements to be associated with
863863
* this {@code Throwable}. The specified array is copied by this
864864
* call; changes in the specified array after the method invocation
865-
* returns will have no affect on this {@code Throwable}'s stack
865+
* returns will have no effect on this {@code Throwable}'s stack
866866
* trace.
867867
*
868868
* @throws NullPointerException if {@code stackTrace} is

‎src/java.base/share/classes/java/lang/invoke/BootstrapCallInfo.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2017, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2017, 2021, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -30,7 +30,7 @@
3030
/**
3131
* An interface providing full static information about a particular
3232
* call to a
33-
* <a href="package-summary.html#bsm">bootstrap method</a> of an
33+
* <a href="package-summary.html#bsm">bootstrap method</a> of a
3434
* dynamic call site or dynamic constant.
3535
* This information includes the method itself, the associated
3636
* name and type, and any associated static arguments.

‎src/java.base/share/classes/java/lang/invoke/MethodHandle.java

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2008, 2020, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2008, 2021, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -1399,7 +1399,7 @@ boolean asCollectorChecks(Class<?> arrayType, int pos, int arrayLength) {
13991399
* a new array of type {@code arrayType}, whose elements
14001400
* comprise (in order) the replaced arguments.
14011401
* <p>
1402-
* The caller type must provides as least enough arguments,
1402+
* The caller type must provide at least enough arguments,
14031403
* and of the correct type, to satisfy the target's requirement for
14041404
* positional arguments before the trailing array argument.
14051405
* Thus, the caller must supply, at a minimum, {@code N-1} arguments,
@@ -1493,7 +1493,7 @@ boolean asCollectorChecks(Class<?> arrayType, int pos, int arrayLength) {
14931493
* array or a single element of an array to be collected.
14941494
* Note that the dynamic type of the trailing argument has no
14951495
* effect on this decision, only a comparison between the symbolic
1496-
* type descriptor of the call site and the type descriptor of the method handle.)
1496+
* type descriptor of the call site and the type descriptor of the method handle.
14971497
*
14981498
* @param arrayType often {@code Object[]}, the type of the array argument which will collect the arguments
14991499
* @return a new method handle which can collect any number of trailing arguments
@@ -1548,7 +1548,7 @@ public boolean isVarargsCollector() {
15481548
* except that {@link #isVarargsCollector isVarargsCollector}
15491549
* will be false.
15501550
* The fixed-arity method handle may (or may not) be the
1551-
* a previous argument to {@code asVarargsCollector}.
1551+
* previous argument to {@code asVarargsCollector}.
15521552
* <p>
15531553
* Here is an example, of a list-making variable arity method handle:
15541554
* <blockquote><pre>{@code

‎src/java.base/share/classes/java/lang/invoke/SerializedLambda.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@
5757
*
5858
* <p>The identity of a function object produced by deserializing the serialized
5959
* form is unpredictable, and therefore identity-sensitive operations (such as
60-
* reference equality, object locking, and {@code System.identityHashCode()} may
60+
* reference equality, object locking, and {@code System.identityHashCode()}) may
6161
* produce different results in different implementations, or even upon
6262
* different deserializations in the same implementation.
6363
*

‎src/java.base/share/classes/java/lang/invoke/VarHandle.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2014, 2020, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2014, 2021, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -382,7 +382,7 @@
382382
* {@code invokevirtual} instruction is linked.
383383
* <p>
384384
* Apart from type descriptor checks, a VarHandles's capability to
385-
* access it's variables is unrestricted.
385+
* access its variables is unrestricted.
386386
* If a VarHandle is formed on a non-public variable by a class that has access
387387
* to that variable, the resulting VarHandle can be used in any place by any
388388
* caller who receives a reference to it.

‎src/java.base/share/classes/java/net/ContentHandler.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 1995, 2020, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 1995, 2021, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -39,7 +39,7 @@
3939
* The application's content handler factory (an instance of a class that
4040
* implements the interface {@code ContentHandlerFactory} set up by a call to
4141
* {@link URLConnection#setContentHandlerFactory(ContentHandlerFactory)
42-
* setContentHandlerFactory} is called with a {@code String} giving the
42+
* setContentHandlerFactory}) is called with a {@code String} giving the
4343
* MIME type of the object being received on the socket. The factory returns an
4444
* instance of a subclass of {@code ContentHandler}, and its
4545
* {@code getContent} method is called to create the object.

‎src/java.base/share/classes/java/net/CookieManager.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@ public CookieManager(CookieStore store,
169169
/**
170170
* To set the cookie policy of this cookie manager.
171171
*
172-
* <p> A instance of {@code CookieManager} will have
172+
* <p> An instance of {@code CookieManager} will have
173173
* cookie policy ACCEPT_ORIGINAL_SERVER by default. Users always
174174
* can call this method to set another cookie policy.
175175
*

‎src/java.base/share/classes/java/net/DatagramSocket.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1376,7 +1376,7 @@ private static SocketException toSocketException(IOException e) {
13761376
* {@code java.net.MulticastSocket}.
13771377
* @return {@code null} if {@code bindaddr == NO_DELEGATE}, otherwise returns a
13781378
* delegate for the requested {@code type}.
1379-
* @throws SocketException if an exception occurs while creating or binding the
1379+
* @throws SocketException if an exception occurs while creating or binding
13801380
* the delegate.
13811381
*/
13821382
static <T extends DatagramSocket> T createDelegate(SocketAddress bindaddr, Class<T> type)

‎src/java.base/share/classes/java/net/HttpCookie.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -474,7 +474,7 @@ public void setSecure(boolean flag) {
474474

475475
/**
476476
* Returns {@code true} if sending this cookie should be restricted to a
477-
* secure protocol, or {@code false} if the it can be sent using any
477+
* secure protocol, or {@code false} if it can be sent using any
478478
* protocol.
479479
*
480480
* @return {@code false} if the cookie can be sent over any standard

‎src/java.base/share/classes/java/net/Inet4Address.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2000, 2020, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2000, 2021, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -186,7 +186,7 @@ public boolean isLoopbackAddress() {
186186
}
187187

188188
/**
189-
* Utility routine to check if the InetAddress is an link local address.
189+
* Utility routine to check if the InetAddress is a link local address.
190190
*
191191
* @return a {@code boolean} indicating if the InetAddress is
192192
* a link local address; or false if address is not a link local unicast address.

‎src/java.base/share/classes/java/net/Inet6Address.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -710,7 +710,7 @@ public boolean isLoopbackAddress() {
710710
}
711711

712712
/**
713-
* Utility routine to check if the InetAddress is an link local address.
713+
* Utility routine to check if the InetAddress is a link local address.
714714
*
715715
* @return a {@code boolean} indicating if the InetAddress is a link local
716716
* address; or false if address is not a link local unicast address.

‎src/java.base/share/classes/java/net/InetAddress.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -400,7 +400,7 @@ public boolean isLoopbackAddress() {
400400
}
401401

402402
/**
403-
* Utility routine to check if the InetAddress is an link local address.
403+
* Utility routine to check if the InetAddress is a link local address.
404404
*
405405
* @return a {@code boolean} indicating if the InetAddress is
406406
* a link local address; or false if address is not a link local unicast address.
@@ -486,7 +486,7 @@ public boolean isMCOrgLocal() {
486486
/**
487487
* Test whether that address is reachable. Best effort is made by the
488488
* implementation to try to reach the host, but firewalls and server
489-
* configuration may block requests resulting in a unreachable status
489+
* configuration may block requests resulting in an unreachable status
490490
* while some specific ports may be accessible.
491491
* A typical implementation will use ICMP ECHO REQUESTs if the
492492
* privilege can be obtained, otherwise it will try to establish

‎src/java.base/share/classes/java/net/Proxy.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2003, 2020, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2003, 2021, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -108,7 +108,7 @@ public Type type() {
108108

109109
/**
110110
* Returns the socket address of the proxy, or
111-
* {@code null} if its a direct connection.
111+
* {@code null} if it's a direct connection.
112112
*
113113
* @return a {@code SocketAddress} representing the socket end
114114
* point of the proxy

‎src/java.base/share/classes/java/net/ProxySelector.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ public static void setDefault(ProxySelector ps) {
132132
* Selects all the applicable proxies based on the protocol to
133133
* access the resource with and a destination address to access
134134
* the resource at.
135-
* The format of the URI is defined as follow:
135+
* The format of the URI is defined as follows:
136136
* <UL>
137137
* <LI>http URI for http connections</LI>
138138
* <LI>https URI for https connections

‎src/java.base/share/classes/java/net/SocketPermission.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -873,7 +873,7 @@ public boolean implies(Permission p) {
873873

874874
/**
875875
* Checks if the incoming Permission's action are a proper subset of
876-
* the this object's actions.
876+
* this object's actions.
877877
* <P>
878878
* Check, in the following order:
879879
* <ul>

‎src/java.base/share/classes/java/nio/charset/CoderResult.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2001, 2018, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2001, 2021, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -263,7 +263,7 @@ public static CoderResult unmappableForLength(int length) {
263263
*
264264
* @throws UnmappableCharacterException
265265
* If this object represents an unmappable-character error; the
266-
* exceptions length value will be that of this object
266+
* exception's length value will be that of this object
267267
*/
268268
public void throwException()
269269
throws CharacterCodingException

‎src/java.base/share/classes/java/nio/file/FileSystem.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2007, 2017, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2007, 2021, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -66,7 +66,7 @@
6666
* directory. The {@link #getRootDirectories getRootDirectories} method may be
6767
* used to iterate over the root directories in the file system. A file system
6868
* is typically composed of one or more underlying {@link FileStore file-stores}
69-
* that provide the storage for the files. Theses file stores can also vary in
69+
* that provide the storage for the files. These file stores can also vary in
7070
* the features they support, and the file attributes or <em>meta-data</em> that
7171
* they associate with files.
7272
*

‎src/java.base/share/classes/java/nio/file/Files.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -1841,7 +1841,7 @@ public static <V extends FileAttributeView> V getFileAttributeView(Path path,
18411841
* installed, its {@link SecurityManager#checkRead(String) checkRead}
18421842
* method is invoked to check read access to the file. If this
18431843
* method is invoked to read security sensitive attributes then the
1844-
* security manager may be invoke to check for additional permissions.
1844+
* security manager may be invoked to check for additional permissions.
18451845
*/
18461846
public static <A extends BasicFileAttributes> A readAttributes(Path path,
18471847
Class<A> type,
@@ -2075,7 +2075,7 @@ public static Object getAttribute(Path path, String attribute,
20752075
* installed, its {@link SecurityManager#checkRead(String) checkRead}
20762076
* method denies read access to the file. If this method is invoked
20772077
* to read security sensitive attributes then the security manager
2078-
* may be invoke to check for additional permissions.
2078+
* may be invoked to check for additional permissions.
20792079
*/
20802080
public static Map<String,Object> readAttributes(Path path, String attributes,
20812081
LinkOption... options)

0 commit comments

Comments
 (0)
Please sign in to comment.