From 0b1bf5f704c6cb6b589d592fe2ddd7468aeba4ff Mon Sep 17 00:00:00 2001 From: Geert-Jan Zwiers Date: Fri, 3 Nov 2023 16:50:12 +0100 Subject: [PATCH] fix typo moudles -> modules (#178) --- runtime/manual/index.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/runtime/manual/index.mdx b/runtime/manual/index.mdx index e1d4a30bf..73ece0358 100644 --- a/runtime/manual/index.mdx +++ b/runtime/manual/index.mdx @@ -363,7 +363,7 @@ Deno provides a compatibility layer that enables your code to use [Node.js built-in modules and third-party modules from npm](./node/index.md). Using Node and npm modules in your code looks a lot like using standard Deno modules, except you'll use either a `node:` or `npm:` specifier when importing -Node built-ins or npm moudles, respectively. +Node built-ins or npm modules, respectively. To see how it works, create a file called `server.js` and include the following - a simple HTTP server using the popular