From a3b2f88d60b3f1d2275170c616fc052b7a5df51a Mon Sep 17 00:00:00 2001 From: daurnimator Date: Tue, 16 Dec 2014 19:19:56 -0500 Subject: [PATCH 1/1] luatz/parse: Fix unbalanced parens in comment --- luatz/parse.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/luatz/parse.lua b/luatz/parse.lua index f5cf735..0b3b2dd 100644 --- a/luatz/parse.lua +++ b/luatz/parse.lua @@ -27,7 +27,7 @@ local function rfc_3339 ( str , init ) if hour_offset then tz_offset = tonumber ( hour_offset ) * 3600 + tonumber ( min_offset ) * 60 else - -- Invalid RFC 3339 timestamp offset (should be Z or (+/-)hour:min + -- Invalid RFC 3339 timestamp offset (should be Z or (+/-)hour:min) -- tz_offset will be nil end end -- 2.39.2