Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions config/config.sample.php
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,8 @@
*
* Value must be an integer, comprised between 0 and 511.
*
* When config.php is shared between different servers, this value should be overriden with "NC_serverid=<int>" on each server.
* Note that it must be overriden for CLI and for your webserver.
* When config.php is shared between different servers, this value should be overridden with "NC_serverid=<int>" on each server.
* Note that it must be overridden for CLI and for your webserver.
*
* Example for CLI: NC_serverid=42 occ config:list system
*/
Expand Down
2 changes: 1 addition & 1 deletion lib/private/Comments/Comment.php
Original file line number Diff line number Diff line change
Expand Up @@ -333,7 +333,7 @@ public function setActor($actorType, $actorId): IComment {
#[\Override]
public function getCreationDateTime(): \DateTime {
if (!isset($this->data['creationDT'])) {
throw new \LogicException('Cannot get creation date before setting one or writting to database');
throw new \LogicException('Cannot get creation date before setting one or writing to database');
}
return $this->data['creationDT'];
}
Expand Down
2 changes: 1 addition & 1 deletion lib/public/BackgroundJob/JobStatus.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ enum JobStatus: int {
case RUNNING = 0;

/**
* Background job completed sucessfully
* Background job completed successfully
*
* @since 34.0.0
*/
Expand Down
Loading