Add closing p tag to maxmin example

This commit is contained in:
Paul Kulchenko 2022-03-20 11:00:54 -07:00
parent 8838366b9a
commit b7f7c3b9d7

View file

@ -297,14 +297,14 @@ local function main()
if geo then
Dump(geo)
else
Write('<p>Not found\n')
Write('<p>Not found</p>\n')
end
Write('<h3>Maxmind ASN DB</h3>')
if asn then
Dump(asn)
else
Write('<p>Not found\n')
Write('<p>Not found</p>\n')
end
end