Skip to content

Commit 17ff85d

Browse files
author
Pavel Rappo
committedMar 20, 2020
8241014: Miscellaneous typos in documentation comments
Reviewed-by: igerasim, prappo, psandoz, rriggs, weijun
1 parent c5a7490 commit 17ff85d

39 files changed

+104
-107
lines changed
 

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

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 1997, 2019, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 1997, 2020, 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
@@ -540,7 +540,7 @@ public FilePermission(String path, String actions) {
540540
* If {@code jdk.io.permissionsUseCanonicalPath} is {@code true}, a
541541
* simple {@code cpath} is inside a wildcard {@code cpath} if and only if
542542
* after removing the base name (the last name in the pathname's name
543-
* sequence) from the former the remaining part equals to the latter,
543+
* sequence) from the former the remaining part is equal to the latter,
544544
* a simple {@code cpath} is recursively inside a wildcard {@code cpath}
545545
* if and only if the former starts with the latter.
546546
* <p>

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

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 1996, 2019, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 1996, 2020, 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
@@ -62,7 +62,7 @@ public abstract class Reader implements Readable, Closeable {
6262
* effect.
6363
*
6464
* <p> While the stream is open, the {@code read()}, {@code read(char[])},
65-
* {@code read(char[], int, int)}, {@code read(Charbuffer)}, {@code
65+
* {@code read(char[], int, int)}, {@code read(CharBuffer)}, {@code
6666
* ready()}, {@code skip(long)}, and {@code transferTo()} methods all
6767
* behave as if end of stream has been reached. After the stream has been
6868
* closed, these methods all throw {@code IOException}.
@@ -183,7 +183,7 @@ protected Reader(Object lock) {
183183
* @throws java.nio.ReadOnlyBufferException if target is a read only buffer
184184
* @since 1.5
185185
*/
186-
public int read(java.nio.CharBuffer target) throws IOException {
186+
public int read(CharBuffer target) throws IOException {
187187
int len = target.remaining();
188188
char[] cbuf = new char[len];
189189
int n = read(cbuf, 0, len);

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

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2002, 2019, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2002, 2020, 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
@@ -9732,7 +9732,7 @@ public static boolean isJavaLetterOrDigit(char ch) {
97329732
}
97339733

97349734
/**
9735-
* Determines if the specified character (Unicode code point) is an alphabet.
9735+
* Determines if the specified character (Unicode code point) is alphabetic.
97369736
* <p>
97379737
* A character is considered to be alphabetic if its general category type,
97389738
* provided by {@link Character#getType(int) getType(codePoint)}, is any of

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

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2014, 2019, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2014, 2020, 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
@@ -319,7 +319,7 @@ public Optional<ProcessHandle> parent() {
319319
* @param pids an allocated long array to receive the pids
320320
* @param ppids an allocated long array to receive the parent pids; may be null
321321
* @param starttimes an allocated long array to receive the child start times; may be null
322-
* @return if greater than or equals to zero is the number of pids in the array;
322+
* @return if greater than or equal to zero is the number of pids in the array;
323323
* if greater than the length of the arrays, the arrays are too small
324324
*/
325325
private static native int getProcessPids0(long pid, long[] pids,

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -960,7 +960,7 @@ public static final class Version
960960

961961
/*
962962
* List of version number components passed to this constructor MUST
963-
* be at least unmodifiable (ideally immutable). In the case on an
963+
* be at least unmodifiable (ideally immutable). In the case of an
964964
* unmodifiable list, the caller MUST hand the list over to this
965965
* constructor and never change the underlying list.
966966
*/

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

+3-3
Original file line numberDiff line numberDiff line change
@@ -1383,7 +1383,7 @@ public boolean regionMatches(int toffset, String other, int ooffset, int len) {
13831383
* integer <i>k</i> less than {@code len} such that:
13841384
* <blockquote><pre>
13851385
* Character.toLowerCase(Character.toUpperCase(this.charAt(toffset+k))) !=
1386-
Character.toLowerCase(Character.toUpperCase(other.charAt(ooffset+k)))
1386+
* Character.toLowerCase(Character.toUpperCase(other.charAt(ooffset+k)))
13871387
* </pre></blockquote>
13881388
* </ul>
13891389
*
@@ -2445,12 +2445,12 @@ public static String join(CharSequence delimiter, CharSequence... elements) {
24452445
* <pre>{@code
24462446
* List<String> strings = List.of("Java", "is", "cool");
24472447
* String message = String.join(" ", strings);
2448-
* //message returned is: "Java is cool"
2448+
* // message returned is: "Java is cool"
24492449
*
24502450
* Set<String> strings =
24512451
* new LinkedHashSet<>(List.of("Java", "is", "very", "cool"));
24522452
* String message = String.join("-", strings);
2453-
* //message returned is: "Java-is-very-cool"
2453+
* // message returned is: "Java-is-very-cool"
24542454
* }</pre></blockquote>
24552455
*
24562456
* Note that if an individual element is {@code null}, then {@code "null"} is added.

‎src/java.base/share/classes/java/lang/constant/DirectMethodHandleDescImpl.java

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2018, 2019, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2018, 2020, 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
@@ -194,8 +194,8 @@ public MethodHandle resolveConstantDesc(MethodHandles.Lookup lookup)
194194
* descriptor.
195195
* @param o a {@code DirectMethodHandleDescImpl} to compare to this
196196
* {@code DirectMethodHandleDescImpl}
197-
* @return {@code true} if the specified {@code DirectMethodHandleDescImpl} is
198-
* equals to this {@code DirectMethodHandleDescImpl}.
197+
* @return {@code true} if the specified {@code DirectMethodHandleDescImpl}
198+
* is equal to this {@code DirectMethodHandleDescImpl}.
199199
*/
200200
@Override
201201
public boolean equals(Object o) {

‎src/java.base/share/classes/java/lang/constant/DynamicCallSiteDesc.java

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2018, 2019, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2018, 2020, 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
@@ -249,8 +249,8 @@ public CallSite resolveCallSiteDesc(MethodHandles.Lookup lookup) throws Throwabl
249249
*
250250
* @param o the {@code DynamicCallSiteDesc} to compare to this
251251
* {@code DynamicCallSiteDesc}
252-
* @return {@code true} if the specified {@code DynamicCallSiteDesc} is
253-
* equals to this {@code DynamicCallSiteDesc}.
252+
* @return {@code true} if the specified {@code DynamicCallSiteDesc}
253+
* is equal to this {@code DynamicCallSiteDesc}.
254254
*/
255255
@Override
256256
public final boolean equals(Object o) {

‎src/java.base/share/classes/java/lang/constant/DynamicConstantDesc.java

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2018, 2019, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2018, 2020, 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
@@ -350,8 +350,8 @@ private static ConstantDesc canonicalizeArrayVarHandle(DynamicConstantDesc<?> de
350350
*
351351
* @param o the {@code DynamicConstantDesc} to compare to this
352352
* {@code DynamicConstantDesc}
353-
* @return {@code true} if the specified {@code DynamicConstantDesc} is
354-
* equals to this {@code DynamicConstantDesc}.
353+
* @return {@code true} if the specified {@code DynamicConstantDesc}
354+
* is equal to this {@code DynamicConstantDesc}.
355355
*
356356
*/
357357
@Override

‎src/java.base/share/classes/java/lang/constant/MethodTypeDescImpl.java

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2018, 2019, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2018, 2020, 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
@@ -158,8 +158,8 @@ public MethodType run() {
158158
*
159159
* @param o the {@code MethodTypeDescImpl} to compare to this
160160
* {@code MethodTypeDescImpl}
161-
* @return {@code true} if the specified {@code MethodTypeDescImpl} is
162-
* equals to this {@code MethodTypeDescImpl}.
161+
* @return {@code true} if the specified {@code MethodTypeDescImpl}
162+
* is equal to this {@code MethodTypeDescImpl}.
163163
*/
164164
@Override
165165
public boolean equals(Object o) {

‎src/java.base/share/classes/java/lang/constant/ReferenceClassDescImpl.java

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2018, 2019, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2018, 2020, 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
@@ -87,8 +87,8 @@ public Class<?> resolveConstantDesc(MethodHandles.Lookup lookup)
8787
*
8888
* @param o the {@code ClassDesc} to compare to this
8989
* {@code ClassDesc}
90-
* @return {@code true} if the specified {@code ClassDesc} is
91-
* equals to this {@code ClassDesc}.
90+
* @return {@code true} if the specified {@code ClassDesc}
91+
* is equal to this {@code ClassDesc}.
9292
*/
9393
@Override
9494
public boolean equals(Object o) {

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

+3-3
Original file line numberDiff line numberDiff line change
@@ -1379,12 +1379,12 @@ public WeakEntry(T key, ReferenceQueue<T> queue) {
13791379

13801380
/**
13811381
* This implementation returns {@code true} if {@code obj} is another
1382-
* {@code WeakEntry} whose referent is equals to this referent, or
1383-
* if {@code obj} is equals to the referent of this. This allows
1382+
* {@code WeakEntry} whose referent is equal to this referent, or
1383+
* if {@code obj} is equal to the referent of this. This allows
13841384
* lookups to be made without wrapping in a {@code WeakEntry}.
13851385
*
13861386
* @param obj the object to compare
1387-
* @return true if {@code obj} is equals to this or the referent of this
1387+
* @return true if {@code obj} is equal to this or the referent of this
13881388
* @see MethodType#equals(Object)
13891389
* @see Object#equals(Object)
13901390
*/

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

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2015, 2019, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2015, 2020, 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
@@ -536,14 +536,14 @@ public static CallSite makeConcat(MethodHandles.Lookup lookup,
536536
* <li>The number of parameter slots in {@code concatType} is less than
537537
* or equal to 200</li>
538538
*
539-
* <li>The parameter count in {@code concatType} equals to number of \1 tags
539+
* <li>The parameter count in {@code concatType} is equal to number of \1 tags
540540
* in {@code recipe}</li>
541541
*
542542
* <li>The return type in {@code concatType} is assignable
543543
* from {@link java.lang.String}, and matches the return type of the
544544
* returned {@link MethodHandle}</li>
545545
*
546-
* <li>The number of elements in {@code constants} equals to number of \2
546+
* <li>The number of elements in {@code constants} is equal to number of \2
547547
* tags in {@code recipe}</li>
548548
* </ul>
549549
*

‎src/java.base/share/classes/java/math/BigDecimal.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -3025,9 +3025,9 @@ public BigDecimal scaleByPowerOfTen(int n) {
30253025
* this one but with any trailing zeros removed from the
30263026
* representation. For example, stripping the trailing zeros from
30273027
* the {@code BigDecimal} value {@code 600.0}, which has
3028-
* [{@code BigInteger}, {@code scale}] components equals to
3028+
* [{@code BigInteger}, {@code scale}] components equal to
30293029
* [6000, 1], yields {@code 6E2} with [{@code BigInteger},
3030-
* {@code scale}] components equals to [6, -2]. If
3030+
* {@code scale}] components equal to [6, -2]. If
30313031
* this BigDecimal is numerically equal to zero, then
30323032
* {@code BigDecimal.ZERO} is returned.
30333033
*

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

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2005, 2018, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2005, 2020, 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
@@ -719,7 +719,7 @@ public boolean equals(Object obj) {
719719
return false;
720720
HttpCookie other = (HttpCookie)obj;
721721

722-
// One http cookie equals to another cookie (RFC 2965 sec. 3.3.3) if:
722+
// One http cookie is equal to another cookie (RFC 2965 sec. 3.3.3) if:
723723
// 1. they come from same domain (case-insensitive),
724724
// 2. have same name (case-insensitive),
725725
// 3. and have same path (case-sensitive).

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -658,7 +658,7 @@ public NetworkInterface getNetworkInterface() throws SocketException {
658658
}
659659

660660
/**
661-
* Disable/Enable local loopback of multicast datagrams
661+
* Disable/Enable local loopback of multicast datagrams.
662662
* The option is used by the platform's networking code as a hint
663663
* for setting whether multicast data will be looped back to
664664
* the local socket.

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

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2007, 2013, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2007, 2020, 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
@@ -103,7 +103,7 @@
103103
* result.add(entry);
104104
* }
105105
* } catch (DirectoryIteratorException ex) {
106-
* // I/O error encounted during the iteration, the cause is an IOException
106+
* // I/O error encountered during the iteration, the cause is an IOException
107107
* throw ex.getCause();
108108
* }
109109
* return result;

‎src/java.base/share/classes/java/nio/file/attribute/UserDefinedFileAttributeView.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2007, 2013, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2007, 2020, 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
@@ -190,7 +190,7 @@ public interface UserDefinedFileAttributeView
190190
* Suppose we want to write a file's MIME type as a user-defined attribute:
191191
* <pre>
192192
* UserDefinedFileAttributeView view =
193-
* FIles.getFileAttributeView(path, UserDefinedFileAttributeView.class);
193+
* Files.getFileAttributeView(path, UserDefinedFileAttributeView.class);
194194
* view.write("user.mimetype", Charset.defaultCharset().encode("text/html"));
195195
* </pre>
196196
*

‎src/java.base/share/classes/java/security/PKCS12Attribute.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2013, 2019, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2013, 2020, 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
@@ -115,7 +115,7 @@ public PKCS12Attribute(String name, String value) {
115115
* </pre>
116116
*
117117
* @param encoded the attribute's ASN.1 DER encoding. It is cloned
118-
* to prevent subsequent modificaion.
118+
* to prevent subsequent modification.
119119
*
120120
* @throws NullPointerException if {@code encoded} is
121121
* {@code null}

‎src/java.base/share/classes/java/security/SignatureSpi.java

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 1997, 2019, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 1997, 2020, 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
@@ -90,7 +90,7 @@ void engineInitVerify(PublicKey publicKey,
9090
try {
9191
engineSetParameter(params);
9292
} catch (UnsupportedOperationException usoe) {
93-
// error out if not overrridden
93+
// error out if not overridden
9494
throw new InvalidAlgorithmParameterException(usoe);
9595
}
9696
}
@@ -155,7 +155,7 @@ void engineInitSign(PrivateKey privateKey,
155155
try {
156156
engineSetParameter(params);
157157
} catch (UnsupportedOperationException usoe) {
158-
// error out if not overrridden
158+
// error out if not overridden
159159
throw new InvalidAlgorithmParameterException(usoe);
160160
}
161161
}

‎src/java.base/share/classes/java/text/BreakIterator.java

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 1996, 2019, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 1996, 2020, 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
@@ -318,7 +318,7 @@ public Object clone()
318318

319319
/**
320320
* Returns the first boundary following the specified character offset. If the
321-
* specified offset equals to the last text boundary, it returns
321+
* specified offset is equal to the last text boundary, it returns
322322
* {@code BreakIterator.DONE} and the iterator's current position is unchanged.
323323
* Otherwise, the iterator's current position is set to the returned boundary.
324324
* The value returned is always greater than the offset or the value
@@ -334,7 +334,7 @@ public Object clone()
334334

335335
/**
336336
* Returns the last boundary preceding the specified character offset. If the
337-
* specified offset equals to the first text boundary, it returns
337+
* specified offset is equal to the first text boundary, it returns
338338
* {@code BreakIterator.DONE} and the iterator's current position is unchanged.
339339
* Otherwise, the iterator's current position is set to the returned boundary.
340340
* The value returned is always less than the offset or the value

‎src/java.base/share/classes/java/time/chrono/ChronoLocalDateTimeImpl.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2012, 2019, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2012, 2020, 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
@@ -405,7 +405,7 @@ public long until(Temporal endExclusive, TemporalUnit unit) {
405405
* <pre>
406406
* out.writeByte(2); // identifies a ChronoLocalDateTime
407407
* out.writeObject(toLocalDate());
408-
* out.witeObject(toLocalTime());
408+
* out.writeObject(toLocalTime());
409409
* </pre>
410410
*
411411
* @return the instance of {@code Ser}, not null

0 commit comments

Comments
 (0)
Please sign in to comment.