Fix rogue quote in example

This commit is contained in:
Filip Tibell 2023-02-04 23:47:04 -05:00
parent 23b570b609
commit 5f831ebb9f
No known key found for this signature in database

View file

@ -9,7 +9,7 @@ local PORT = if process.env.PORT ~= nil and #process.env.PORT > 0
local function pong(request: NetRequest): NetResponse
return {
body = `Pong!\n{request.path}\n{request.body}"`,
body = `Pong!\n{request.path}\n{request.body}`,
}
end