Skip to content

Commit 0a62f13

Browse files
joshuaspenceepriestley
authored and
epriestley
committedJun 9, 2014
Change double quotes to single quotes.
Summary: Ran `arc lint --apply-patches --everything` over rP, mainly to change double quotes to single quotes where appropriate. These changes also validate that the `ArcanistXHPASTLinter::LINT_DOUBLE_QUOTE` rule is working as expected. Test Plan: Eyeballed it. Reviewers: #blessed_reviewers, epriestley Reviewed By: #blessed_reviewers, epriestley Subscribers: epriestley, Korvin, hach-que Differential Revision: https://secure.phabricator.com/D9431
1 parent 78f7832 commit 0a62f13

File tree

560 files changed

+1721
-1722
lines changed

Some content is hidden

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

560 files changed

+1721
-1722
lines changed
 

‎resources/sql/patches/059.engines.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
echo "Converting {$name}...\n";
2525
queryfx(
2626
$conn,
27-
"ALTER TABLE %T.%T ENGINE=InnoDB",
27+
'ALTER TABLE %T.%T ENGINE=InnoDB',
2828
$table['db'],
2929
$table['tbl']);
3030
}

‎resources/sql/patches/079.nametokenindex.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,10 @@
77
$table->beginReadLocking();
88

99
$users = $table->loadAll();
10-
echo count($users)." users to index";
10+
echo count($users).' users to index';
1111
foreach ($users as $user) {
1212
$user->updateNameTokens();
13-
echo ".";
13+
echo '.';
1414
}
1515

1616
$table->endReadLocking();

0 commit comments

Comments
 (0)
Failed to load comments.