From bb34055db3f2aece43d72fa2994337002d4c599b Mon Sep 17 00:00:00 2001 From: Austin Merrick Date: Wed, 1 Oct 2025 10:15:28 -0700 Subject: [PATCH 1/2] Fix link in hono example --- framework-boilerplates/hono/src/index.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/framework-boilerplates/hono/src/index.ts b/framework-boilerplates/hono/src/index.ts index 3fcea0e360..98976d8c81 100644 --- a/framework-boilerplates/hono/src/index.ts +++ b/framework-boilerplates/hono/src/index.ts @@ -3,8 +3,8 @@ import { Hono } from 'hono' const app = new Hono() const welcomeStrings = [ - "Hello Hono!", - "To learn more about Hono on Vercel, visit https://vercel.com/docs/frameworks/hono", + 'Hello Hono!', + 'To learn more about Hono on Vercel, visit https://vercel.com/docs/frameworks/backend/hono', ] app.get('/', (c) => { From 1d96cef81475e7c12756f921cd806b75c8cc0219 Mon Sep 17 00:00:00 2001 From: Austin Merrick Date: Wed, 1 Oct 2025 10:16:13 -0700 Subject: [PATCH 2/2] Match formatting --- framework-boilerplates/hono/src/index.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/framework-boilerplates/hono/src/index.ts b/framework-boilerplates/hono/src/index.ts index 98976d8c81..8298514a81 100644 --- a/framework-boilerplates/hono/src/index.ts +++ b/framework-boilerplates/hono/src/index.ts @@ -3,8 +3,8 @@ import { Hono } from 'hono' const app = new Hono() const welcomeStrings = [ - 'Hello Hono!', - 'To learn more about Hono on Vercel, visit https://vercel.com/docs/frameworks/backend/hono', + "Hello Hono!", + "To learn more about Hono on Vercel, visit https://vercel.com/docs/frameworks/backend/hono", ] app.get('/', (c) => {