From fd8560116a64c0457573be8f6e86049513a08c30 Mon Sep 17 00:00:00 2001 From: Salvatore Iovene Date: Mon, 21 Jan 2013 10:51:07 +0200 Subject: [PATCH] (hoofbeats) Capitalizes error messages. --- examples/hoofbeats/javascripts/library.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/hoofbeats/javascripts/library.js b/examples/hoofbeats/javascripts/library.js index d1fe596..1f057ff 100644 --- a/examples/hoofbeats/javascripts/library.js +++ b/examples/hoofbeats/javascripts/library.js @@ -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"); } }; }; -- 2.7.4