You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cordova.apache.org by an...@apache.org on 2013/02/20 23:56:27 UTC

[3/8] bada commit: Spelling: occurred

Spelling: occurred


Project: http://git-wip-us.apache.org/repos/asf/cordova-bada/repo
Commit: http://git-wip-us.apache.org/repos/asf/cordova-bada/commit/f7bd2a6f
Tree: http://git-wip-us.apache.org/repos/asf/cordova-bada/tree/f7bd2a6f
Diff: http://git-wip-us.apache.org/repos/asf/cordova-bada/diff/f7bd2a6f

Branch: refs/heads/master
Commit: f7bd2a6ff98a21c54dc532ddc2497f166ccdab17
Parents: cc7c3a6
Author: Josh Soref <js...@rim.com>
Authored: Mon Sep 10 15:37:02 2012 -0400
Committer: Josh Soref <js...@rim.com>
Committed: Mon Sep 10 15:47:12 2012 -0400

----------------------------------------------------------------------
 Res/main.js |    8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cordova-bada/blob/f7bd2a6f/Res/main.js
----------------------------------------------------------------------
diff --git a/Res/main.js b/Res/main.js
index 9518032..ba18369 100644
--- a/Res/main.js
+++ b/Res/main.js
@@ -172,7 +172,7 @@ function getSystemInfo() {
                        'Device UUID: '     + device.uuid     + '<br />' + 
                        'Device Version: '  + device.version  + '<br />';
   } catch(e) {
-    debugPrint("Error Occured: "+e.message);
+    debugPrint("Error Occurred: "+e.message);
   }
   
 }
@@ -222,7 +222,7 @@ function saveContact() {
     contact.address.country = "Canada";
     contact.save(onSuccess, onError);
   } catch(e) {
-    debugPrint("Error Occured: "+e.message);
+    debugPrint("Error Occurred: "+e.message);
   }
 }
 
@@ -242,7 +242,7 @@ function findContact() {
     };
     navigator.service.contacts.find(["displayName", "firstName"], onSuccess, onFailure, {filter:"7789989674"});
   } catch(e) {
-    debugPrint("Error Occured: "+e.message);
+    debugPrint("Error Occurred: "+e.message);
   }
 }
 
@@ -260,7 +260,7 @@ function removeContacts() {
       contact.remove(onSuccess, onFailure);
     }
   } catch(e) {
-    debugPrint("Error Occured in remove Contact: "+e.message);
+    debugPrint("Error Occurred in remove Contact: "+e.message);
   }
 }