From a9974c15d6c0876ce5c22ba48915d2dd7263bd40 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebasti=C3=A1n=20Katzer?= Date: Sun, 1 Dec 2013 14:32:16 +0100 Subject: [PATCH] Fix wrong var name. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 3976fe0..59b182d 100644 --- a/README.md +++ b/README.md @@ -54,7 +54,7 @@ Function takes a callback function, passed to which is a boolean property. Optio */ window.plugin.printer.isServiceAvailable( function (isAvailable) { - alert(isavailable ? 'Service is available' : 'Service NOT available'); + alert(isAvailable ? 'Service is available' : 'Service NOT available'); } ); ```