From f550116b819730f4283a10b4dced52eba493170a Mon Sep 17 00:00:00 2001 From: "erg@google.com" Date: Thu, 21 Oct 2010 17:20:05 +0000 Subject: [PATCH] Fix wrong number of braces. Thanks to wdscxsj@gmail.com for pointing this out. --- javascriptguide.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/javascriptguide.xml b/javascriptguide.xml index f27555d..e461af5 100644 --- a/javascriptguide.xml +++ b/javascriptguide.xml @@ -994,7 +994,7 @@ if (searchableCollection(allYourStuff).contains(theStuffYouWant) && !ambientNotification.isActive() && (client.isAmbientSupported() || - client.alwaysTryAmbientAnyways()) { + client.alwaysTryAmbientAnyways())) { ambientNotification.activate(); }