From 4181ef3263d5a382a030979749d8e26f56d8757a Mon Sep 17 00:00:00 2001 From: Per Guth Date: Tue, 15 Oct 2024 11:30:29 +0200 Subject: [PATCH] docs: fix formatting (#2707) --- docs/latest/concepts/middleware.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/latest/concepts/middleware.md b/docs/latest/concepts/middleware.md index 050a5837448..3e5502c147c 100644 --- a/docs/latest/concepts/middleware.md +++ b/docs/latest/concepts/middleware.md @@ -104,7 +104,7 @@ import { FreshContext } from "$fresh/server.ts"; export async function handler(_req: Request, ctx: FreshContext) { const currentTenant = ctx.params.tenant; - //do something with the tenant + // do something with the tenant const resp = await ctx.next(); return resp; }