Skip to content

Commit

Permalink
Fix various spelling mistakes
Browse files Browse the repository at this point in the history
Summary: Minor change, self-explanatory.

Test Plan: Eye-ball it.

Reviewers: epriestley, #blessed_reviewers

Reviewed By: epriestley, #blessed_reviewers

Subscribers: epriestley, Korvin

Differential Revision: https://secure.phabricator.com/D9910
  • Loading branch information
joshuaspence committed Jul 12, 2014
1 parent f9f2092 commit 9016207
Show file tree
Hide file tree
Showing 9 changed files with 10 additions and 9 deletions.
2 changes: 1 addition & 1 deletion scripts/arcanist.php
Original file line number Diff line number Diff line change
Expand Up @@ -319,7 +319,7 @@
try {
id(new $listener())->register();
} catch (PhutilMissingSymbolException $ex) {
// Continue anwyay, since you may otherwise be unable to run commands
// Continue anyway, since you may otherwise be unable to run commands
// like `arc set-config events.listeners` in order to repair the damage
// you've caused. We're writing out the entire exception here because
// it might not have been triggered by the listener itself (for example,
Expand Down
2 changes: 1 addition & 1 deletion src/hgdaemon/ArcanistHgProxyClient.php
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ public function executeCommand(array $argv) {

// Note that we're adding "runcommand" to make the server run the command.
// Theoretically the server supports other capabilities, but in practice
// we are only concerend with "runcommand".
// we are only concerned with "runcommand".

$server->write(array_merge(array('runcommand'), $argv));

Expand Down
3 changes: 2 additions & 1 deletion src/hgdaemon/ArcanistHgProxyServer.php
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,8 @@ public function start() {
foreach ($clients as $key => $client) {
if ($this->updateClient($client, $hg)) {
// In this case, the client is still connected so just move on to
// the next one. Otherwise we continue below and handle the disconect.
// the next one. Otherwise we continue below and handle the
// disconnect.
continue;
}

Expand Down
2 changes: 1 addition & 1 deletion src/lint/engine/ArcanistLintEngine.php
Original file line number Diff line number Diff line change
Expand Up @@ -568,7 +568,7 @@ public function getLinterResource($key, $default = null) {


/**
* Set a linter resource that other linters can accesss.
* Set a linter resource that other linters can access.
*
* See @{method:getLinterResource} for a description of this mechanism.
*
Expand Down
2 changes: 1 addition & 1 deletion src/lint/linter/ArcanistScriptAndRegexLinter.php
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@
* not present in the output. If no severity capturing group is present,
* messages are raised with "error" severity. If multiple severity capturing
* groups are present, messages are raised with the highest captured
* serverity. Capturing groups like `error` supersede the `severity`
* severity. Capturing groups like `error` supersede the `severity`
* capturing group.
* - `error` (optional) Match some nonempty substring to indicate that this
* message has "error" severity.
Expand Down
2 changes: 1 addition & 1 deletion src/parser/ArcanistBundle.php
Original file line number Diff line number Diff line change
Expand Up @@ -803,7 +803,7 @@ public static function encodeBase85($data) {
// This is implemented awkwardly in order to closely mirror git's
// implementation in base85.c

// It is also implemeted awkwardly to work correctly on 32-bit machines.
// It is also implemented awkwardly to work correctly on 32-bit machines.
// Broadly, this algorithm converts the binary input to printable output
// by transforming each 4 binary bytes of input to 5 printable bytes of
// output, one piece at a time.
Expand Down
2 changes: 1 addition & 1 deletion src/repository/api/ArcanistGitAPI.php
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ public function getLocalCommitInformation() {
}

// NOTE: Windows escaping of "%" symbols apparently is inherently broken;
// when passed throuhgh escapeshellarg() they are replaced with spaces.
// when passed through escapeshellarg() they are replaced with spaces.

// TODO: Learn how cmd.exe works and find some clever workaround?
Expand Down
2 changes: 1 addition & 1 deletion src/repository/api/ArcanistRepositoryAPI.php
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,7 @@ final public function getCommitRangeStatus() {
/**
* Get a list of paths affected by commits in the current commit range, or
* uncommitted changes in the working copy. See @{method:getUncommittedStatus}
* or @{method:getCommitRangeStatus} to retreive smaller parts of the status.
* or @{method:getCommitRangeStatus} to retrieve smaller parts of the status.
*
* See @{method:getUncommittedStatus} for a description of the return value.
*
Expand Down
2 changes: 1 addition & 1 deletion src/workflow/ArcanistBaseWorkflow.php
Original file line number Diff line number Diff line change
Expand Up @@ -1225,7 +1225,7 @@ final protected function isHistoryImmutable() {
/**
* Workflows like 'lint' and 'unit' operate on a list of working copy paths.
* The user can either specify the paths explicitly ("a.js b.php"), or by
* specfifying a revision ("--rev a3f10f1f") to select all paths modified
* specifying a revision ("--rev a3f10f1f") to select all paths modified
* since that revision, or by omitting both and letting arc choose the
* default relative revision.
*
Expand Down

0 comments on commit 9016207

Please sign in to comment.