From 072613be99ffd32217ac8a4072f48bc6a9527421 Mon Sep 17 00:00:00 2001
From: Bryce Curtis <curtis.bryce@gmail.com>
Date: Fri, 22 Oct 2010 13:08:54 -0500
Subject: [PATCH] Rename PhoneGap.execAsync() to PhoneGap.exec().

---
 framework/assets/js/phonegap.js.base | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/framework/assets/js/phonegap.js.base b/framework/assets/js/phonegap.js.base
index c71dbfbc..7413f7d3 100755
--- a/framework/assets/js/phonegap.js.base
+++ b/framework/assets/js/phonegap.js.base
@@ -390,7 +390,7 @@ PhoneGap.callbacks = {};
  * @param {String} action       Action to be run in PhoneGap
  * @param {String[]} [args]     Zero or more arguments to pass to the method
  */
-PhoneGap.execAsync = function(success, fail, service, action, args) {
+PhoneGap.exec = function(success, fail, service, action, args) {
     try {
         var callbackId = service + PhoneGap.callbackId++;
         if (success || fail) {