Skip to content
This repository has been archived by the owner on Aug 31, 2021. It is now read-only.

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
vlajos committed Jul 20, 2015
1 parent 561484d commit 5fde11b
Show file tree
Hide file tree
Showing 9 changed files with 30 additions and 30 deletions.
22 changes: 11 additions & 11 deletions s3fs/js/events.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ var util = require('../../shared/util');
* @param {Object} options Input options.
* @param {function} onSuccess Function to be called if the metadata was
* fetched successfully.
* @param {function} onError Function to be called if an error occured while
* @param {function} onError Function to be called if an error occurred while
* attempting to fetch the metadata.
*/

Expand All @@ -32,7 +32,7 @@ var onCloseFileRequested = function(options, onSuccess, onError) {
* @param {Object} options Input options.
* @param {function} onSuccess Function to be called if the entry was copied
* successfully.
* @param {function} onError Function to be called if an error occured while
* @param {function} onError Function to be called if an error occurred while
* attempting to copy the entry.
*/
var onCopyEntryRequested = function(options, onSuccess, onError) {
Expand Down Expand Up @@ -63,7 +63,7 @@ var onCopyEntryRequested = function(options, onSuccess, onError) {
* @param {Object} options Input options.
* @param {function} onSuccess Function to be called if the file was created
* successfully.
* @param {function} onError Function to be called if an error occured while
* @param {function} onError Function to be called if an error occurred while
* attempting to create the file.
*/
var onCreateFileRequested = function(options, onSuccess, onError) {
Expand Down Expand Up @@ -93,7 +93,7 @@ var onCreateFileRequested = function(options, onSuccess, onError) {
* @param {Object} options Input options.
* @param {function} onSuccess Function to be called if the entry was deleted
* successfully.
* @param {function} onError Function to be called if an error occured while
* @param {function} onError Function to be called if an error occurred while
* attempting to delete the entry.
*/
var onDeleteEntryRequested = function(options, onSuccess, onError) {
Expand Down Expand Up @@ -121,7 +121,7 @@ var onDeleteEntryRequested = function(options, onSuccess, onError) {
* @param {Object} options Input options.
* @param {function} onSuccess Function to be called if the metadata was
* fetched successfully.
* @param {function} onError Function to be called if an error occured while
* @param {function} onError Function to be called if an error occurred while
* attempting to fetch the metadata.
*/
var onGetMetadataRequested = function(options, onSuccess, onError) {
Expand Down Expand Up @@ -182,7 +182,7 @@ var onGetMetadataRequested = function(options, onSuccess, onError) {
* @param {Object} options Input options.
* @param {function} onSuccess Function to be called if the file was opened
* successfully.
* @param {function} onError Function to be called if an error occured while
* @param {function} onError Function to be called if an error occurred while
* attempting to open the file.
*/
var onOpenFileRequested = function(options, onSuccess, onError) {
Expand All @@ -203,7 +203,7 @@ var onOpenFileRequested = function(options, onSuccess, onError) {
* @param {Object} options Input options.
* @param {function} onSuccess Function to be called if the directory was
* read successfully.
* @param {function} onError Function to be called if an error occured while
* @param {function} onError Function to be called if an error occurred while
* attempting to read the directory.
*/
var onReadDirectoryRequested = function(options, onSuccess, onError) {
Expand Down Expand Up @@ -250,7 +250,7 @@ var onReadDirectoryRequested = function(options, onSuccess, onError) {
* @param {Object} options Input options.
* @param {function} onSuccess Function to be called if the file was
* read successfully.
* @param {function} onError Function to be called if an error occured while
* @param {function} onError Function to be called if an error occurred while
* attempting to read the file.
*/
var onReadFileRequested = function(options, onSuccess, onError) {
Expand Down Expand Up @@ -285,7 +285,7 @@ var onReadFileRequested = function(options, onSuccess, onError) {
* @param {Object} options Input options.
* @param {function} onSuccess Function to be called if the file was
* read successfully.
* @param {function} onError Function to be called if an error occured while
* @param {function} onError Function to be called if an error occurred while
* attempting to read the file.
*/
var onTruncateRequested = function(options, onSuccess, onError) {
Expand Down Expand Up @@ -336,7 +336,7 @@ var onTruncateRequested = function(options, onSuccess, onError) {
* @param {Object} options Input options.
* @param {function} onSuccess Function to be called if the file was
* read successfully.
* @param {function} onError Function to be called if an error occured while
* @param {function} onError Function to be called if an error occurred while
* attempting to read the file.
*/
var onWriteFileRequested = function(options, onSuccess, onError) {
Expand Down Expand Up @@ -374,7 +374,7 @@ var onWriteFileRequested = function(options, onSuccess, onError) {
* @param {Object} options Input options.
* @param {function} onSuccess Function to be called if the entry was copied
* successfully.
* @param {function} onError Function to be called if an error occured while
* @param {function} onError Function to be called if an error occurred while
* attempting to copy the entry.
*/
var onMoveEntryRequested = function(options, onSuccess, onError) {
Expand Down
2 changes: 1 addition & 1 deletion templatefs/js/events/onCloseFileRequested.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
* @param {Object} options Input options.
* @param {function} onSuccess Function to be called if the file was opened
* successfully.
* @param {function} onError Function to be called if an error occured while
* @param {function} onError Function to be called if an error occurred while
* attempting to close the file.
*/
module.exports = function(options, onSuccess, onError) {
Expand Down
2 changes: 1 addition & 1 deletion templatefs/js/events/onGetMetadataRequested.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
* @param {Object} options Input options.
* @param {function} onSuccess Function to be called if the metadata was
* fetched successfully.
* @param {function} onError Function to be called if an error occured while
* @param {function} onError Function to be called if an error occurred while
* attempting to fetch the metadata.
*/
module.exports = function(options, onSuccess, onError) {
Expand Down
2 changes: 1 addition & 1 deletion templatefs/js/events/onOpenFileRequested.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
* @param {Object} options Input options.
* @param {function} onSuccess Function to be called if the file was opened
* successfully.
* @param {function} onError Function to be called if an error occured while
* @param {function} onError Function to be called if an error occurred while
* attempting to open the file.
*/
module.exports = function(options, onSuccess, onError) {
Expand Down
2 changes: 1 addition & 1 deletion templatefs/js/events/onReadDirectoryRequested.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
* @param {Object} options Input options.
* @param {function} onSuccess Function to be called if the directory was
* read successfully.
* @param {function} onError Function to be called if an error occured while
* @param {function} onError Function to be called if an error occurred while
* attempting to read the directory.
*/
module.exports = function(options, onSuccess, onError) {
Expand Down
2 changes: 1 addition & 1 deletion templatefs/js/events/onReadFileRequested.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
* @param {Object} options Input options.
* @param {function} onSuccess Function to be called if the file was
* read successfully.
* @param {function} onError Function to be called if an error occured while
* @param {function} onError Function to be called if an error occurred while
* attempting to read the file.
*/
module.exports = function(options, onSuccess, onError) {
Expand Down
2 changes: 1 addition & 1 deletion webdavfs/js/client.js
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,7 @@ WebDAVClient.prototype.request = function(verb, url, headers, data, responseType
return body;
};

// Register the callback to to be called when the request sucessfully
// Register the callback to to be called when the request successfully
// completes.
xhr.onreadystatechange = function() {
if(xhr.readyState !== 4) { return; }
Expand Down
24 changes: 12 additions & 12 deletions webdavfs/js/events.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ var util = require('../../shared/util');
* @param {object} options Input options.
* @param {function} onSuccess Function to be called if the file was closed
* successfully.
* @param {function} onError Function to be called if an error occured while
* @param {function} onError Function to be called if an error occurred while
* attempting to close the file.
*/
var onCloseFileRequested = function(options, onSuccess, onError) {
Expand All @@ -36,7 +36,7 @@ var onCloseFileRequested = function(options, onSuccess, onError) {
* @param {Object} options Input options.
* @param {Function} onSuccess Function to be called if the metadata was
* fetched successfully.
* @param {Function} onError Function to be called if an error occured while
* @param {Function} onError Function to be called if an error occurred while
* attempting to fetch the metadata.
*/
var onGetMetadataRequested = function(options, onSuccess, onError) {
Expand All @@ -61,7 +61,7 @@ var onGetMetadataRequested = function(options, onSuccess, onError) {
* @param {Object} options Input options.
* @param {Function} onSuccess Function to be called if the file was opened
* successfully.
* @param {Function} onError Function to be called if an error occured while
* @param {Function} onError Function to be called if an error occurred while
* attempting to open the file.
*/
var onOpenFileRequested = function(options, onSuccess, onError) {
Expand All @@ -83,7 +83,7 @@ var onOpenFileRequested = function(options, onSuccess, onError) {
* @param {Object} options Input options.
* @param {Function} onSuccess Function to be called if the directory was
* read successfully.
* @param {Function} onError Function to be called if an error occured while
* @param {Function} onError Function to be called if an error occurred while
* attempting to read the directory.
*/
var onReadDirectoryRequested = function(options, onSuccess, onError) {
Expand All @@ -106,7 +106,7 @@ var onReadDirectoryRequested = function(options, onSuccess, onError) {
* @param {Object} options Input options.
* @param {Function} onSuccess Function to be called if the file was
* read successfully.
* @param {Function} onError Function to be called if an error occured while
* @param {Function} onError Function to be called if an error occurred while
* attempting to read the file.
*/
var onReadFileRequested = function(options, onSuccess, onError) {
Expand Down Expand Up @@ -140,7 +140,7 @@ var onReadFileRequested = function(options, onSuccess, onError) {
* @param {Object} options Input options.
* @param {Function} onSuccess Function to be called if the file was
* written to successfully.
* @param {Function} onError Function to be called if an error occured while
* @param {Function} onError Function to be called if an error occurred while
* attempting to write to the file.
*/
var onWriteFileRequested = function(options, onSuccess, onError) {
Expand Down Expand Up @@ -172,7 +172,7 @@ var onWriteFileRequested = function(options, onSuccess, onError) {
* @param {Object} options Input options.
* @param {Function} onSuccess Function to be called if the file was
* truncated successfully.
* @param {Function} onError Function to be called if an error occured while
* @param {Function} onError Function to be called if an error occurred while
* attempting to truncate the file.
*/

Expand Down Expand Up @@ -215,7 +215,7 @@ var onTruncateRequested = function(options, onSuccess, onError) {
* @param {Object} options Input options.
* @param {Function} onSuccess Function to be called if the file was
* created successfully.
* @param {Function} onError Function to be called if an error occured while
* @param {Function} onError Function to be called if an error occurred while
* attempting to create the file.
*/
var onCreateFileRequested = function(options, onSuccess, onError) {
Expand All @@ -237,7 +237,7 @@ var onCreateFileRequested = function(options, onSuccess, onError) {
* @param {Object} options Input options.
* @param {Function} onSuccess Function to be called if the entry was
* copied successfully.
* @param {Function} onError Function to be called if an error occured while
* @param {Function} onError Function to be called if an error occurred while
* attempting to copy the entry.
*/
var onCopyEntryRequested = function(options, onSuccess, onError) {
Expand All @@ -254,7 +254,7 @@ var onCopyEntryRequested = function(options, onSuccess, onError) {
* @param {Object} options Input options.
* @param {Function} onSuccess Function to be called if the entry was
* copied successfully.
* @param {Function} onError Function to be called if an error occured while
* @param {Function} onError Function to be called if an error occurred while
* attempting to copy the entry.
*/
var onMoveEntryRequested = function(options, onSuccess, onError) {
Expand All @@ -271,7 +271,7 @@ var onMoveEntryRequested = function(options, onSuccess, onError) {
* @param {Object} options Input options.
* @param {Function} onSuccess Function to be called if the file was
* deleted successfully.
* @param {Function} onError Function to be called if an error occured while
* @param {Function} onError Function to be called if an error occurred while
* attempting to delete the file.
*/
var onDeleteEntryRequested = function(options, onSuccess, onError) {
Expand Down Expand Up @@ -329,7 +329,7 @@ var onDeleteEntryRequested = function(options, onSuccess, onError) {
* @param {Object} inputOptions Input options.
* @param {Function} onSuccess Function to be called if the file system was
* unmounted successfully.
* @param {Function} onError Function to be called if an error occured while
* @param {Function} onError Function to be called if an error occurred while
* attempting to umount the file system.
*/
var onUnmountRequested = function(inputOptions, onSuccess, onError) {
Expand Down
2 changes: 1 addition & 1 deletion webdavfs/js/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ var events = require('./events');
* @param {string} url The URL of the server to connect to.
* @param {function=} callbacks.onSuccess Function to call if the server was
* mounted successfully.
* @param {function=} callbacks.onError Function to call if an error occured
* @param {function=} callbacks.onError Function to call if an error occurred
* while attempting to mount the server.
*/
var mount = function(url, callbacks) {
Expand Down

0 comments on commit 5fde11b

Please sign in to comment.