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 if geo then
Dump(geo) Dump(geo)
else else
Write('<p>Not found\n') Write('<p>Not found</p>\n')
end end
Write('<h3>Maxmind ASN DB</h3>') Write('<h3>Maxmind ASN DB</h3>')
if asn then if asn then
Dump(asn) Dump(asn)
else else
Write('<p>Not found\n') Write('<p>Not found</p>\n')
end end
end end