Skip to content

Commit 8582db9

Browse files
committed
http/util: Fix bad grammar in comments
1 parent 9a576c5 commit 8582db9

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

http/util.lua

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,8 @@ local function encodeURIComponent(str)
2424
end
2525

2626
-- decodeURI unescapes url encoded characters
27-
-- excluding for characters that are special in urls
27+
-- excluding characters that are special in urls
2828
local decodeURI do
29-
-- Keep the blacklist in numeric form.
30-
-- This means we can skip case normalisation of the hex characters
3129
local decodeURI_blacklist = {}
3230
for char in ("#$&+,/:;=?@"):gmatch(".") do
3331
decodeURI_blacklist[string.byte(char)] = true

0 commit comments

Comments
 (0)