diff options
author | luz paz <luzpaz@pm.me> | 2022-07-26 17:21:57 -0400 |
---|---|---|
committer | luz paz <luzpaz@pm.me> | 2022-07-26 17:40:10 -0400 |
commit | d4637ef4d8da53f9b13ce97b06fcf5151db0e499 (patch) | |
tree | e867e6ca6acb7fe673a83a0fcf9baafe59981d74 /apps/dav/lib/CalDAV/Schedule | |
parent | 97462295587f4016066264edb6eed5d5e17903f3 (diff) | |
download | nextcloud-server-d4637ef4d8da53f9b13ce97b06fcf5151db0e499.tar.gz nextcloud-server-d4637ef4d8da53f9b13ce97b06fcf5151db0e499.zip |
Fix typos in apps/dav subdirectory
Found via `codespell -q 3 -S l10n -L jus ./apps/dav`
Signed-off-by: luz paz <luzpaz@github.com>
Diffstat (limited to 'apps/dav/lib/CalDAV/Schedule')
-rw-r--r-- | apps/dav/lib/CalDAV/Schedule/Plugin.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/dav/lib/CalDAV/Schedule/Plugin.php b/apps/dav/lib/CalDAV/Schedule/Plugin.php index 74865297944..44517541faa 100644 --- a/apps/dav/lib/CalDAV/Schedule/Plugin.php +++ b/apps/dav/lib/CalDAV/Schedule/Plugin.php @@ -179,7 +179,7 @@ class Plugin extends \Sabre\CalDAV\Schedule\Plugin { // If parent::scheduleLocalDelivery set scheduleStatus to 1.2, // it means that it was successfully delivered locally. - // Meaning that the ACL plugin is loaded and that a principial + // Meaning that the ACL plugin is loaded and that a principal // exists for the given recipient id, no need to double check /** @var \Sabre\DAVACL\Plugin $aclPlugin */ $aclPlugin = $this->server->getPlugin('acl'); @@ -567,7 +567,7 @@ EOF; } // If more than one Free-Busy property was returned, it means that an event - // starts or ends inside this time-range, so it's not availabe and we return false + // starts or ends inside this time-range, so it's not available and we return false if (count($freeBusyProperties) > 1) { return false; } |