From be4024c9c27d6a30ff1bcdec0369b6ace8892718 Mon Sep 17 00:00:00 2001 From: epriestley Date: Thu, 26 Sep 2013 05:21:43 -0700 Subject: [PATCH] Fix a spelling mistake in warning message for missing 'diff' binary Summary: Someone in IRC helpfully pointed this out. Auditors: btrahan --- src/applications/config/check/PhabricatorSetupCheckBinaries.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/applications/config/check/PhabricatorSetupCheckBinaries.php b/src/applications/config/check/PhabricatorSetupCheckBinaries.php index f6a714b856..b5bc79d808 100644 --- a/src/applications/config/check/PhabricatorSetupCheckBinaries.php +++ b/src/applications/config/check/PhabricatorSetupCheckBinaries.php @@ -121,7 +121,7 @@ final class PhabricatorSetupCheckBinaries extends PhabricatorSetupCheck { ->setShortName(pht("'%s' Missing", $bin)) ->setName(pht("Missing '%s' Binary", $bin)) ->setSummary( - pht("The '%s' binary could not be located or excuted.", $bin)) + pht("The '%s' binary could not be located or executed.", $bin)) ->setMessage($preamble.' '.$message) ->addPhabricatorConfig('environment.append-paths'); }