Spelling mistake fixes (#2151)

* Spelling mistake fixes

* Spelling mistake fix
This commit is contained in:
Adam Jones 2018-12-21 13:20:52 +00:00 committed by neslihanturan
parent d31574f6cd
commit fb3136ab19
31 changed files with 107 additions and 116 deletions

View file

@ -224,7 +224,7 @@ public class ImageUtils {
public static String getErrorMessageForResult(Context context, @Result int result) {
/**
* Result variable is a result of an or operation of all possbile problems. Ie. if result
* Result variable is a result of an or operation of all possible problems. Ie. if result
* is 0001 means IMAGE_DARK, if result is 1100 IMAGE_DUPLICATE and IMAGE_GEOLOCATION_DIFFERENT
*/
StringBuilder errorMessage = new StringBuilder();

View file

@ -7,7 +7,7 @@ public class LocationUtils {
return new LatLng(mapBoxLatLng.getLatitude(), mapBoxLatLng.getLongitude(), 0);
}
public static com.mapbox.mapboxsdk.geometry.LatLng comonsLatLngToMapBoxLatLng(LatLng commonsLatLng) {
public static com.mapbox.mapboxsdk.geometry.LatLng commonsLatLngToMapBoxLatLng(LatLng commonsLatLng) {
return new com.mapbox.mapboxsdk.geometry.LatLng(commonsLatLng.getLatitude(), commonsLatLng.getLongitude());
}
}