From 332af6408529039531db09dfdbd7af27570c7e88 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20B=C3=A4ckman?= Date: Thu, 27 Feb 2025 10:48:58 +0100 Subject: [PATCH] Update geolocation-hello-world.mdx Added a missing semicolon to the Python 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) ```