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; }