mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-18 12:52:42 +01: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:
parent
b9abb277ca
commit
2536febed3
5 changed files with 5 additions and 5 deletions
|
@ -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
|
||||
|
|
|
@ -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) {
|
||||
|
|
|
@ -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();
|
||||
|
|
|
@ -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,
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue