Corrected spelling of the word "properties" in error message in ReactAndroid/build.gradle

Summary:
The misspelling in the error message bothered me.

N/A
Closes https://github.com/facebook/react-native/pull/14425

Differential Revision: D5225388

Pulled By: shergin

fbshipit-source-id: b20f31f0685099ae1d1c3dd2de74dfb33eadfd6e
This commit is contained in:
Owen Auch 2017-06-11 00:13:04 -07:00 committed by Facebook Github Bot
parent b6cf4eeed6
commit e8df8d9fd5
1 changed files with 1 additions and 1 deletions

View File

@ -187,7 +187,7 @@ def getNdkBuildFullPath() {
if (!new File(ndkBuildFullPath).canExecute()) {
throw new GradleScriptException(
"ndk-build binary " + ndkBuildFullPath + " doesn't exist or isn't executable.\n" +
"Check that the \$ANDROID_NDK environment variable, or ndk.dir in local.proerties, is set correctly.\n" +
"Check that the \$ANDROID_NDK environment variable, or ndk.dir in local.properties, is set correctly.\n" +
"(On Windows, make sure you escape backslashes in local.properties or use forward slashes, e.g. C:\\\\ndk or C:/ndk rather than C:\\ndk)",
null)
}