From 81d77ba4c3925c53586d08c0db5988a80c6f219b Mon Sep 17 00:00:00 2001 From: Nelson Chen Date: Mon, 30 May 2022 15:51:23 -0700 Subject: [PATCH] minor typo fixes in readme (#286) --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 2e2a2fac..419749f6 100644 --- a/README.md +++ b/README.md @@ -98,7 +98,7 @@ import { basicAuth } from 'hono/basic-auth' const v1 = new Hono() v1.get('/posts', (c) => { - return c.text('list pots') + return c.text('list posts') }) .post(basicAuth({ username, password }), (c) => { return c.text('created!', 201) @@ -644,7 +644,7 @@ npx wrangler publish ./src/index.ts You can start making your Cloudflare Workers application with [the starter template](https://github.com/honojs/hono-minimal). It is really minimal using TypeScript, esbuild, Miniflare, and Jest. -To generate a project skelton, run this command. +To generate a project skeleton, run this command. ``` npx create-cloudflare my-app https://github.com/honojs/hono-minimal