From e8df8d9fd579ff14224cacdb816f9ff07eef978d Mon Sep 17 00:00:00 2001 From: Owen Auch Date: Sun, 11 Jun 2017 00:13:04 -0700 Subject: [PATCH] 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 --- ReactAndroid/build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ReactAndroid/build.gradle b/ReactAndroid/build.gradle index e1adee3d7..0c704f323 100644 --- a/ReactAndroid/build.gradle +++ b/ReactAndroid/build.gradle @@ -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) }