Merge "Fix typo in the exception message."

This commit is contained in:
Nick Kralevich
2014-07-05 17:07:51 +00:00
committed by Gerrit Code Review

View File

@@ -1642,7 +1642,7 @@ public class LocationManager {
}
if (!intent.isTargetedToPackage()) {
IllegalArgumentException e = new IllegalArgumentException(
"pending intent msut be targeted to package");
"pending intent must be targeted to package");
if (mContext.getApplicationInfo().targetSdkVersion > Build.VERSION_CODES.JELLY_BEAN) {
throw e;
} else {