From 2536febed39baec25ba9398cb2ae43d7b97a1933 Mon Sep 17 00:00:00 2001 From: Eitan Adler Date: Sat, 27 Jun 2015 08:43:44 -0700 Subject: [PATCH] Remove duplicated duplicated words Test Plan: eyeball it Reviewers: joshuaspence, #blessed_reviewers, epriestley Reviewed By: joshuaspence, #blessed_reviewers, epriestley Subscribers: epriestley Differential Revision: https://secure.phabricator.com/D13462 --- src/applications/config/check/PhabricatorTimezoneSetupCheck.php | 2 +- src/applications/diviner/storage/DivinerLiveSymbol.php | 2 +- .../files/storage/__tests__/PhabricatorFileTestCase.php | 2 +- .../repository/graphcache/PhabricatorRepositoryGraphCache.php | 2 +- .../editor/PhabricatorApplicationTransactionEditor.php | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/src/applications/config/check/PhabricatorTimezoneSetupCheck.php b/src/applications/config/check/PhabricatorTimezoneSetupCheck.php index bf087c933a..08f6a28d10 100644 --- a/src/applications/config/check/PhabricatorTimezoneSetupCheck.php +++ b/src/applications/config/check/PhabricatorTimezoneSetupCheck.php @@ -15,7 +15,7 @@ final class PhabricatorTimezoneSetupCheck extends PhabricatorSetupCheck { if (!$ok) { $message = pht( - 'Your PHP configuration configuration selects an invalid timezone. '. + 'Your PHP configuration selects an invalid timezone. '. 'Select a valid timezone.'); $this diff --git a/src/applications/diviner/storage/DivinerLiveSymbol.php b/src/applications/diviner/storage/DivinerLiveSymbol.php index bdda976081..75ea3bcd7b 100644 --- a/src/applications/diviner/storage/DivinerLiveSymbol.php +++ b/src/applications/diviner/storage/DivinerLiveSymbol.php @@ -150,7 +150,7 @@ final class DivinerLiveSymbol extends DivinerDAO public function save() { // NOTE: The identity hash is just a sanity check because the unique tuple - // on this table is way way too long to fit into a normal `UNIQUE KEY`. + // on this table is way too long to fit into a normal `UNIQUE KEY`. // We don't use it directly, but its existence prevents duplicate records. if (!$this->identityHash) { diff --git a/src/applications/files/storage/__tests__/PhabricatorFileTestCase.php b/src/applications/files/storage/__tests__/PhabricatorFileTestCase.php index e90b60f6f2..f6199c9a03 100644 --- a/src/applications/files/storage/__tests__/PhabricatorFileTestCase.php +++ b/src/applications/files/storage/__tests__/PhabricatorFileTestCase.php @@ -185,7 +185,7 @@ final class PhabricatorFileTestCase extends PhabricatorTestCase { $second_file = PhabricatorFile::newFromFileData($data, $params); - // Test that the the second file uses the same storage handle as + // Test that the second file uses the same storage handle as // the first file. $handle = $first_file->getStorageHandle(); $second_handle = $second_file->getStorageHandle(); diff --git a/src/applications/repository/graphcache/PhabricatorRepositoryGraphCache.php b/src/applications/repository/graphcache/PhabricatorRepositoryGraphCache.php index 302006309b..d52182fcc9 100644 --- a/src/applications/repository/graphcache/PhabricatorRepositoryGraphCache.php +++ b/src/applications/repository/graphcache/PhabricatorRepositoryGraphCache.php @@ -313,7 +313,7 @@ final class PhabricatorRepositoryGraphCache extends Phobject { // Find all the Git and Mercurial commits in the block which have completed // change import. We can't fill the cache accurately for commits which have // not completed change import, so just pretend we don't know about them. - // In these cases, we will will ultimately fall back to VCS queries. + // In these cases, we will ultimately fall back to VCS queries. $commit_rows = queryfx_all( $conn_r, diff --git a/src/applications/transactions/editor/PhabricatorApplicationTransactionEditor.php b/src/applications/transactions/editor/PhabricatorApplicationTransactionEditor.php index eb53b3b2e0..0b6dd2de91 100644 --- a/src/applications/transactions/editor/PhabricatorApplicationTransactionEditor.php +++ b/src/applications/transactions/editor/PhabricatorApplicationTransactionEditor.php @@ -960,7 +960,7 @@ abstract class PhabricatorApplicationTransactionEditor // Maybe this makes more sense to move into the search index itself? For // now I'm putting it here since I think we might end up with things that // need it to be up to date once the next page loads, but if we don't go - // there we we could move it into search once search moves to the daemons. + // there we could move it into search once search moves to the daemons. // It now happens in the search indexer as well, but the search indexer is // always daemonized, so the logic above still potentially holds. We could