Skip to content

Commit 58f6201

Browse files
Merge pull request #62564 from jannikbx/fix/typo-spelling-errors
fix: correct spelling errors in comments
2 parents c02ce53 + e94fac5 commit 58f6201

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

config/config.sample.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,8 +49,8 @@
4949
*
5050
* Value must be an integer, comprised between 0 and 511.
5151
*
52-
* When config.php is shared between different servers, this value should be overriden with "NC_serverid=<int>" on each server.
53-
* Note that it must be overriden for CLI and for your webserver.
52+
* When config.php is shared between different servers, this value should be overridden with "NC_serverid=<int>" on each server.
53+
* Note that it must be overridden for CLI and for your webserver.
5454
*
5555
* Example for CLI: NC_serverid=42 occ config:list system
5656
*/

lib/private/Comments/Comment.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -333,7 +333,7 @@ public function setActor($actorType, $actorId): IComment {
333333
#[\Override]
334334
public function getCreationDateTime(): \DateTime {
335335
if (!isset($this->data['creationDT'])) {
336-
throw new \LogicException('Cannot get creation date before setting one or writting to database');
336+
throw new \LogicException('Cannot get creation date before setting one or writing to database');
337337
}
338338
return $this->data['creationDT'];
339339
}

lib/public/BackgroundJob/JobStatus.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ enum JobStatus: int {
2323
case RUNNING = 0;
2424

2525
/**
26-
* Background job completed sucessfully
26+
* Background job completed successfully
2727
*
2828
* @since 34.0.0
2929
*/

0 commit comments

Comments
 (0)