Skip to content

Commit 4ff6af1

Browse files
author
Justin Zobel
committed
fix: "than" vs "then" typos
1 parent 387b40b commit 4ff6af1

4 files changed

Lines changed: 5 additions & 5 deletions

File tree

apps/dav/lib/Migration/DisableSystemAddressBook.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,11 +50,11 @@ public function run(IOutput $output) {
5050
// We use count seen because getting a user count from the backend can be very slow
5151
$limit = $this->appConfig->getAppValueInt('system_addressbook_limit', 5000);
5252
if ($this->userManager->countSeenUsers() <= $limit) {
53-
$output->info("Skipping repair step system address book has less then the threshold $limit of contacts no need to disable");
53+
$output->info("Skipping repair step system address book has less than the threshold $limit of contacts no need to disable");
5454
return;
5555
}
5656
$this->appConfig->setAppValueBool(ConfigLexicon::SYSTEM_ADDRESSBOOK_EXPOSED, false);
57-
$output->warning("System address book disabled because it has more then the threshold of $limit contacts this can be re-enabled later");
57+
$output->warning("System address book disabled because it has more than the threshold of $limit contacts this can be re-enabled later");
5858
// Notify all admin users about the system address book being disabled
5959
foreach ($this->groupManager->get('admin')->getUsers() as $user) {
6060
$notification = $this->notificationManager->createNotification();

apps/files_external/lib/Lib/Storage/FtpConnection.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ private function parseUnixItem(string $item, string $directory): array {
153153
$tomorrow = (new \DateTime())->add(new \DateInterval('P1D'));
154154

155155
// since the provided date doesn't include the year, we either set it to the correct year
156-
// or when the date would otherwise be in the future (by more then 1 day to account for timezone errors)
156+
// or when the date would otherwise be in the future (by more than 1 day to account for timezone errors)
157157
// we use last year
158158
if ($parsedDate > $tomorrow) {
159159
$parsedDate = $parsedDate->sub(new \DateInterval('P1Y'));

apps/files_trashbin/src/files_views/columns.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -312,7 +312,7 @@ describe('files_trashbin: file list columns', () => {
312312
})
313313

314314
expect(deletedBy.sort).toBeTypeOf('function')
315-
// aaa is less then "Unknown"
315+
// aaa is less than "Unknown"
316316
expect(deletedBy.sort!(nodeA, nodeC)).toBeLessThan(0)
317317
// zzz is greater than "Unknown"
318318
expect(deletedBy.sort!(nodeB, nodeC)).toBeGreaterThan(0)

lib/private/Lock/DBLockingProvider.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,7 @@ public function changeLock(string $path, int $targetType): void {
182182
$qb->expr()->eq('lock', $qb->createNamedParameter(-1, IQueryBuilder::PARAM_INT))
183183
))->executeStatement();
184184
} else {
185-
// since we only keep one shared lock in the db we need to check if we have more then one shared lock locally manually
185+
// since we only keep one shared lock in the db we need to check if we have more than one shared lock locally manually
186186
if (isset($this->acquiredLocks['shared'][$path]) && $this->acquiredLocks['shared'][$path] > 1) {
187187
throw new LockedException($path);
188188
}

0 commit comments

Comments
 (0)