You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cordova.apache.org by st...@apache.org on 2014/02/11 00:22:57 UTC

[31/50] git commit: Fix typos in deprecation message

Fix typos in deprecation message


Project: http://git-wip-us.apache.org/repos/asf/cordova-plugin-file/repo
Commit: http://git-wip-us.apache.org/repos/asf/cordova-plugin-file/commit/6a0e2a0f
Tree: http://git-wip-us.apache.org/repos/asf/cordova-plugin-file/tree/6a0e2a0f
Diff: http://git-wip-us.apache.org/repos/asf/cordova-plugin-file/diff/6a0e2a0f

Branch: refs/heads/master
Commit: 6a0e2a0f49d44453a1191bcbe7dae575966634f0
Parents: ca3813c
Author: Ian Clelland <ic...@chromium.org>
Authored: Thu Jan 23 09:53:16 2014 -0500
Committer: Ian Clelland <ic...@chromium.org>
Committed: Thu Jan 23 09:53:16 2014 -0500

----------------------------------------------------------------------
 www/resolveLocalFileSystemURI.js | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cordova-plugin-file/blob/6a0e2a0f/www/resolveLocalFileSystemURI.js
----------------------------------------------------------------------
diff --git a/www/resolveLocalFileSystemURI.js b/www/resolveLocalFileSystemURI.js
index 06090c2..6fef4b1 100644
--- a/www/resolveLocalFileSystemURI.js
+++ b/www/resolveLocalFileSystemURI.js
@@ -64,6 +64,6 @@ module.exports.resolveLocalFileSystemURL = function(uri, successCallback, errorC
     exec(success, fail, "File", "resolveLocalFileSystemURI", [uri]);
 };
 module.exports.resolveLocalFileSystemURI = function() {
-    console.log("resolveLocalfileSystemURI is deprecated. Please call reolvelLocalFileSystemURL instead");
+    console.log("resolveLocalFileSystemURI is deprecated. Please call resolveLocalFileSystemURL instead.");
     module.exports.resolveLocalFileSystemURL.apply(this, arguments);
 };