summaryrefslogtreecommitdiffstats
path: root/apps/dav/lib/connector
diff options
context:
space:
mode:
authorStefan Weil <sw@weilnetz.de>2016-01-29 18:25:27 +0100
committerStefan Weil <sw@weilnetz.de>2016-03-30 10:14:26 +0200
commit65b01272416b9ab686d0fdac7cdc7e09da8e5cf7 (patch)
tree062c49dd5f5a203b37a064ea617ee0bde99543b7 /apps/dav/lib/connector
parent0e687993c8afb36876e7d90c229b97b4aaf43b70 (diff)
downloadnextcloud-server-65b01272416b9ab686d0fdac7cdc7e09da8e5cf7.tar.gz
nextcloud-server-65b01272416b9ab686d0fdac7cdc7e09da8e5cf7.zip
apps/dav: Fix typos in comments (found and fixed by codespell)
Signed-off-by: Stefan Weil <sw@weilnetz.de>
Diffstat (limited to 'apps/dav/lib/connector')
-rw-r--r--apps/dav/lib/connector/sabre/lockplugin.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/dav/lib/connector/sabre/lockplugin.php b/apps/dav/lib/connector/sabre/lockplugin.php
index ff4e1dc01bb..66da39a57c8 100644
--- a/apps/dav/lib/connector/sabre/lockplugin.php
+++ b/apps/dav/lib/connector/sabre/lockplugin.php
@@ -49,7 +49,7 @@ class LockPlugin extends ServerPlugin {
}
public function getLock(RequestInterface $request) {
- // we cant listen on 'beforeMethod:PUT' due to order of operations with setting up the tree
+ // we can't listen on 'beforeMethod:PUT' due to order of operations with setting up the tree
// so instead we limit ourselves to the PUT method manually
if ($request->getMethod() !== 'PUT' || isset($_SERVER['HTTP_OC_CHUNKED'])) {
return;