1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-09-20 01:08:50 +02:00

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
This commit is contained in:
Eitan Adler 2015-06-27 08:43:44 -07:00 committed by epriestley
parent b9abb277ca
commit 2536febed3
5 changed files with 5 additions and 5 deletions

View file

@ -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

View file

@ -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) {

View file

@ -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();

View file

@ -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,

View file

@ -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