Fix typos with cspell (#6972)

This commit is contained in:
Gold856
2024-08-17 10:44:34 -04:00
committed by GitHub
parent 780b1e0391
commit b12b83aa89
83 changed files with 151 additions and 152 deletions

View File

@@ -138,7 +138,7 @@ public class WPIUtilJNI {
* multiple-consumer scenario.
*
* @param initialCount initial value for the semaphore's internal counter
* @param maximumCount maximum value for the samephore's internal counter
* @param maximumCount maximum value for the semaphore's internal counter
* @return Semaphore handle
*/
public static native int createSemaphore(int initialCount, int maximumCount);

View File

@@ -103,10 +103,10 @@ public interface Protobuf<T, MessageType extends ProtoMessage<?>> {
}
/**
* Returns whether or not objects are cloneable using the clone() method. Clonable objects must
* Returns whether or not objects are cloneable using the clone() method. Cloneable objects must
* also be comparable using the equals() method. Default implementation returns false.
*
* @return True if object is clonable
* @return True if object is cloneable
*/
default boolean isCloneable() {
return false;

View File

@@ -203,10 +203,10 @@ public interface Struct<T> {
}
/**
* Returns whether or not objects are cloneable using the clone() method. Clonable objects must
* Returns whether or not objects are cloneable using the clone() method. Cloneable objects must
* also be comparable using the equals() method. Default implementation returns false.
*
* @return True if object is clonable
* @return True if object is cloneable
*/
default boolean isCloneable() {
return false;