Skip to content

Commit 9bd6a37

Browse files
0epriestley
authored andcommitted
Fix spelling
Summary: Noticed a couple of typos in the docs, and then things got out of hand. Test Plan: - Stared at the words until my eyes watered and the letters began to swim on the screen. - Consulted a dictionary. Reviewers: #blessed_reviewers, epriestley Reviewed By: #blessed_reviewers, epriestley Subscribers: epriestley, yelirekim, PHID-OPKG-gm6ozazyms6q6i22gyam Differential Revision: https://secure.phabricator.com/D18693
1 parent 4fd9d2d commit 9bd6a37

File tree

157 files changed

+204
-204
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

157 files changed

+204
-204
lines changed

scripts/setup/manage_garbage.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
require_once $root.'/scripts/__init_script__.php';
66

77
$args = new PhutilArgumentParser($argv);
8-
$args->setTagline(pht('manage garbage colletors'));
8+
$args->setTagline(pht('manage garbage collectors'));
99
$args->setSynopsis(<<<EOSYNOPSIS
1010
**garbage** __command__ [__options__]
1111
Manage garbage collectors.

src/aphront/httpparametertype/AphrontHTTPParameterType.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@ final public function getExamples() {
160160
/**
161161
* Call another type's existence check.
162162
*
163-
* This method allows a type to reuse the exitence behavior of a different
163+
* This method allows a type to reuse the existence behavior of a different
164164
* type. For example, a "list of users" type may have the same basic
165165
* existence check that a simpler "list of strings" type has, and can just
166166
* call the simpler type to reuse its behavior.

src/applications/almanac/editor/AlmanacDeviceEditor.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -204,7 +204,7 @@ protected function validateTransaction(
204204
$xaction);
205205
$errors[] = $error;
206206
} else {
207-
// TODO: Validate addresses, but IPv6 addresses are not trival
207+
// TODO: Validate addresses, but IPv6 addresses are not trivial
208208
// to validate.
209209
}
210210

src/applications/audit/view/PhabricatorAuditListView.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ private function getCommitDescription($phid) {
6363
return $summary;
6464
}
6565

66-
// No summary, so either this is still impoting or just has an empty
66+
// No summary, so either this is still importing or just has an empty
6767
// commit message.
6868

6969
if (!$commit->isImported()) {

src/applications/auth/controller/PhabricatorAuthController.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ protected function loadAccountForRegistrationOrLinking($account_key) {
134134
// checks later on to make sure this account is valid for the intended
135135
// operation. This requires edit permission for completeness and consistency
136136
// but it won't actually be meaningfully checked because we're using the
137-
// ominpotent user.
137+
// omnipotent user.
138138

139139
$account = id(new PhabricatorExternalAccountQuery())
140140
->setViewer(PhabricatorUser::getOmnipotentUser())

src/applications/auth/controller/PhabricatorAuthRegisterController.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ public function handleRequest(AphrontRequest $request) {
7979
}
8080

8181
if ($default_email !== null) {
82-
// We should bypass policy here becase e.g. limiting an application use
82+
// We should bypass policy here because e.g. limiting an application use
8383
// to a subset of users should not allow the others to overwrite
8484
// configured application emails.
8585
$application_email = id(new PhabricatorMetaMTAApplicationEmailQuery())

src/applications/auth/editor/PhabricatorAuthSSHKeyEditor.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -226,7 +226,7 @@ protected function buildMailTemplate(PhabricatorLiskDAO $object) {
226226
->addHeader('Thread-Topic', $phid);
227227

228228
// The primary value of this mail is alerting users to account compromises,
229-
// so force delivery. In particular, this mail should still be delievered
229+
// so force delivery. In particular, this mail should still be delivered
230230
// even if "self mail" is disabled.
231231
$mail->setForceDelivery(true);
232232

src/applications/auth/factor/__tests__/PhabricatorAuthInviteTestCase.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ public function testDuplicateInvite() {
5151
$caught = $ex;
5252
}
5353

54-
// This first time should accept the invite and verify the addresss.
54+
// This first time should accept the invite and verify the address.
5555
$this->assertTrue(
5656
($caught instanceof PhabricatorAuthInviteRegisteredException));
5757

src/applications/auth/management/PhabricatorAuthManagementRevokeWorkflow.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ public function execute(PhutilArgumentParser $args) {
7474
if (!strlen($from) && !$is_everywhere) {
7575
throw new PhutilArgumentUsageException(
7676
pht(
77-
'Specify the target to revoke credentals from with "--from" or '.
77+
'Specify the target to revoke credentials from with "--from" or '.
7878
'specify "--everywhere".'));
7979
} else if (strlen($from) && $is_everywhere) {
8080
throw new PhutilArgumentUsageException(

src/applications/auth/provider/PhabricatorOAuth1AuthProvider.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -270,7 +270,7 @@ private function getTemporaryTokenType($core_type) {
270270
}
271271

272272
private function getHandshakeTokenKeyFromClientCode($client_code) {
273-
// NOTE: This is very slightly coersive since the TemporaryToken table
273+
// NOTE: This is very slightly coercive since the TemporaryToken table
274274
// expects an "objectPHID" as an identifier, but nothing about the storage
275275
// is bound to PHIDs.
276276

0 commit comments

Comments
 (0)