1
0
Fork 0
mirror of https://we.phorge.it/source/arcanist.git synced 2024-11-25 16:22:42 +01:00

Use punctuation in spelling linter

Summary: Also move dependency one directory down.

Test Plan:
  $ arc lint # on file with "teh"

Reviewers: jack, epriestley

Reviewed By: epriestley

CC: aran, Korvin

Differential Revision: https://secure.phabricator.com/D3436
This commit is contained in:
vrana 2012-09-04 23:45:54 -07:00
parent 466910c700
commit a309e5e1eb
3 changed files with 3 additions and 3 deletions

View file

@ -106,7 +106,7 @@ phutil_register_library_map(array(
'ArcanistSettings' => 'configuration/ArcanistSettings.php', 'ArcanistSettings' => 'configuration/ArcanistSettings.php',
'ArcanistShellCompleteWorkflow' => 'workflow/ArcanistShellCompleteWorkflow.php', 'ArcanistShellCompleteWorkflow' => 'workflow/ArcanistShellCompleteWorkflow.php',
'ArcanistSingleLintEngine' => 'lint/engine/ArcanistSingleLintEngine.php', 'ArcanistSingleLintEngine' => 'lint/engine/ArcanistSingleLintEngine.php',
'ArcanistSpellingDefaultData' => 'lint/linter/ArcanistSpellingDefaultData.php', 'ArcanistSpellingDefaultData' => 'lint/linter/spelling/ArcanistSpellingDefaultData.php',
'ArcanistSpellingLinter' => 'lint/linter/ArcanistSpellingLinter.php', 'ArcanistSpellingLinter' => 'lint/linter/ArcanistSpellingLinter.php',
'ArcanistSpellingLinterTestCase' => 'lint/linter/__tests__/ArcanistSpellingLinterTestCase.php', 'ArcanistSpellingLinterTestCase' => 'lint/linter/__tests__/ArcanistSpellingLinterTestCase.php',
'ArcanistSubversionAPI' => 'repository/api/ArcanistSubversionAPI.php', 'ArcanistSubversionAPI' => 'repository/api/ArcanistSubversionAPI.php',

View file

@ -115,7 +115,7 @@ final class ArcanistSpellingLinter extends ArcanistLinter {
$next, $next,
$severity, $severity,
sprintf( sprintf(
"Possible spelling error. You wrote '%s', but did you mean '%s'", "Possible spelling error. You wrote '%s', but did you mean '%s'?",
$word, $word,
$correct_word $correct_word
) )
@ -141,7 +141,7 @@ final class ArcanistSpellingLinter extends ArcanistLinter {
$match[1], $match[1],
$severity, $severity,
sprintf( sprintf(
"Possible spelling error. You wrote '%s', but did you mean '%s'", "Possible spelling error. You wrote '%s', but did you mean '%s'?",
$word, $word,
$correct_word $correct_word
) )