(hoofbeats) Capitalizes error messages.
authorSalvatore Iovene <salvatore.iovene@intel.com>
Mon, 21 Jan 2013 08:51:07 +0000 (10:51 +0200)
committerSalvatore Iovene <salvatore.iovene@intel.com>
Mon, 21 Jan 2013 08:51:07 +0000 (10:51 +0200)
examples/hoofbeats/javascripts/library.js

index d1fe596..1f057ff 100644 (file)
@@ -13,7 +13,7 @@ $(function() {
                 window.webkitRequestFileSystem;
 
             if (window.requestFileSystem === undefined) {
-                throw Error("your browser doesn't support file system " +
+                throw Error("Your browser doesn't support file system " +
                             "operations");
             }
         };
@@ -21,7 +21,7 @@ $(function() {
         this.load = function() {
             this.initialize()
             if (this.root === undefined) {
-                throw Error("root directory is not defined");
+                throw Error("Root directory is not defined");
             }
         };
     };