apps: file-upload: fix typo in comments

Signed-off-by: Tigran Mkrtchyan <tigran.mkrtchyan@desy.de>
This commit is contained in:
Tigran Mkrtchyan 2019-01-21 19:11:13 +01:00
parent 6a50df9ea9
commit 0573413134
1 changed files with 2 additions and 2 deletions

View File

@ -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'));
}