Skip to content

Commit

Permalink
Fix Typos
Browse files Browse the repository at this point in the history
  • Loading branch information
theresalech committed Feb 22, 2022
1 parent e5398b4 commit 10b1977
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -252,7 +252,7 @@ public boolean isPersistent() {
}

/**
* Sets the the name of the static file. Static files comes pre-shipped with the head unit
* Sets the name of the static file. Static files comes pre-shipped with the head unit
*
* @param staticIcon a StaticIconName enum value representing the name of a static file that comes pre-shipped with the head unit
*/
Expand All @@ -261,7 +261,7 @@ public void setStaticIcon(boolean staticIcon) {
}

/**
* Gets the the name of the static file. Static files comes pre-shipped with the head unit
* Gets the name of the static file. Static files comes pre-shipped with the head unit
*
* @return a StaticIconName enum value representing the name of a static file that comes pre-shipped with the head unit
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2467,7 +2467,7 @@ protected void setSDLConnectedStatus(String address, boolean hasSDLConnected) {
/**
* Checks to see if a device address has connected to SDL before.
*
* @param address the mac address of the device in quesiton
* @param address the mac address of the device in question
* @return if this is the first status check of this device
*/
protected boolean isFirstStatusCheck(String address) {
Expand All @@ -2478,7 +2478,7 @@ protected boolean isFirstStatusCheck(String address) {
/**
* Checks to see if a device address has connected to SDL before.
*
* @param address the mac address of the device in quesiton
* @param address the mac address of the device in question
* @return if an SDL connection has ever been established with this device
*/
protected boolean hasSDLConnected(String address) {
Expand Down Expand Up @@ -2973,7 +2973,7 @@ private LocalRouterService(Intent intent, int version, long timeStamp, Component
/**
* Check if input is newer than this version
*
* @param service a reference to another possible router service that is in quesiton
* @param service a reference to another possible router service that is in question
* @return if the supplied service is newer than this one
*/
public boolean isNewer(@SuppressWarnings("deprecation") LocalRouterService service) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -352,7 +352,7 @@ public static boolean isFeatureSupported(List<SdlAppInfo> sdlAppInfoList) {

/**
* Callback for the SdlDeviceListener. It will return if the supplied device makes a bluetooth
* connection on the SDL UUID RFCOMM chanel or not. Most of the time the only callback that
* connection on the SDL UUID RFCOMM channel or not. Most of the time the only callback that
* matters will be the onTransportConnected.
*/
public interface Callback {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -331,7 +331,7 @@ public static void saveVehicleType(Context context, VehicleType vehicleType, Str
*
* @param context a context to access Android system services through.
* @param component a component name of a LocalRouterService.
* @param manifestFieldId a string resources id that indicates an unique name for the vehicle data in the manifest.
* @param manifestFieldId a string resources id that indicates a unique name for the vehicle data in the manifest.
* @return The list of vehicle types, or null if an error occurred or field was not found.
*/
public static @Nullable List<VehicleType> getVehicleTypesFromManifest(Context context, ComponentName component, int manifestFieldId) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -270,7 +270,7 @@ public List<SoftButtonState> getStates() {
}

/**
* Set the the SoftButtonState list
* Set the SoftButtonState list
*
* @param states a list of the object's soft button states. <strong>states should be unique for every SoftButtonObject. A SoftButtonState instance cannot be reused for multiple SoftButtonObjects.</strong>
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ public JSONObject serializeJSON(byte protocolVersion) throws JSONException {
}

/**
* This method should clean the the RPC to make sure it is compliant with the spec.
* This method should clean the RPC to make sure it is compliant with the spec.
* <br><br><b> NOTE:</b> Super needs to be called at the END of the method
*
* @param rpcVersion the rpc spec version that has been negotiated. If value is null the
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ public Integer getCmdID() {
}

/**
* <p>Sets an Unique Command ID that identifies the command. Is returned in an
* <p>Sets a Unique Command ID that identifies the command. Is returned in an
* <i>{@linkplain OnCommand}</i> notification to identify the command
* selected by the user</p>
*
Expand Down

0 comments on commit 10b1977

Please sign in to comment.