diff options
author | Tigran Mkrtchyan <tigran.mkrtchyan@desy.de> | 2019-01-21 19:11:13 +0100 |
---|---|---|
committer | Tigran Mkrtchyan <tigran.mkrtchyan@desy.de> | 2019-01-21 19:11:13 +0100 |
commit | 05734131345809f61444388daf4d845e70079283 (patch) | |
tree | 303ce867bb06091255253115a12807b70b214858 /apps/files/js/file-upload.js | |
parent | 6a50df9ea9f2a7fe28c3e0fca78e04a7d19ea1da (diff) | |
download | nextcloud-server-05734131345809f61444388daf4d845e70079283.tar.gz nextcloud-server-05734131345809f61444388daf4d845e70079283.zip |
apps: file-upload: fix typo in comments
Signed-off-by: Tigran Mkrtchyan <tigran.mkrtchyan@desy.de>
Diffstat (limited to 'apps/files/js/file-upload.js')
-rw-r--r-- | apps/files/js/file-upload.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/files/js/file-upload.js b/apps/files/js/file-upload.js index ed7cd4c2a66..bc1a4b36794 100644 --- a/apps/files/js/file-upload.js +++ b/apps/files/js/file-upload.js @@ -194,7 +194,7 @@ OC.FileUpload.prototype = { var data = this.data; var file = this.getFile(); - // it was a folder upload, so make sure the parent directory exists alrady + // it was a folder upload, so make sure the parent directory exists already var folderPromise; if (file.relativePath) { folderPromise = this.uploader.ensureFolderExists(this.getFullPath()); @@ -655,7 +655,7 @@ OC.Uploader.prototype = _.extend({ // when only replacement selected -> overwrite self.onReplace(conflict.data('data')); } else { - // when only original seleted -> skip + // when only original selected -> skip // when none selected -> skip self.onSkip(conflict.data('data')); } |