mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-27 02:01:42 +00:00
Fix typos with cspell (#6972)
This commit is contained in:
@@ -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);
|
||||
|
||||
@@ -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;
|
||||
|
||||
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user