From da813ff7b6f46e1d60501cee3d5b91b62c2987f8 Mon Sep 17 00:00:00 2001 From: Brad Fitzpatrick Date: Sat, 22 Dec 2012 12:14:05 -0800 Subject: [PATCH] Missing semicolon Change-Id: Id58835a3e8d37f6a1ee0990a2e1204a5129bbc60 --- server/camlistored/ui/camli.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/camlistored/ui/camli.js b/server/camlistored/ui/camli.js index 0510664e4..bcebd8795 100644 --- a/server/camlistored/ui/camli.js +++ b/server/camlistored/ui/camli.js @@ -68,7 +68,7 @@ function dateToRfc3339String(dateVal) { numStr = "0" + numStr; } return numStr; - } + }; return dateVal.getUTCFullYear() + "-" + pad(dateVal.getUTCMonth() + 1, 2) + "-" + pad(dateVal.getUTCDate(), 2) + "T" + pad(dateVal.getUTCHours(), 2) + ":" + pad(dateVal.getUTCMinutes(), 2) + ":" + pad(dateVal.getUTCSeconds(), 2) + "Z"; }