From b1e7ca5774483232e0c9dca60a9817994bec9bb9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20B=C3=A4ckman?= Date: Thu, 9 Jan 2025 20:33:34 +0100 Subject: [PATCH] Update geolocation-hello-world.mdx The Python section was missing a semicolon in the headers section. --- src/content/docs/workers/examples/geolocation-hello-world.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/content/docs/workers/examples/geolocation-hello-world.mdx b/src/content/docs/workers/examples/geolocation-hello-world.mdx index 8c22143a4ae233..9ac167fa28a860 100644 --- a/src/content/docs/workers/examples/geolocation-hello-world.mdx +++ b/src/content/docs/workers/examples/geolocation-hello-world.mdx @@ -133,7 +133,7 @@ async def on_fetch(request): """ - headers = Headers.new({"content-type": "text/htmlcharset=UTF-8"}.items()) + headers = Headers.new({"content-type": "text/html;charset=UTF-8"}.items()) return Response.new(html, headers=headers) ```