From 3590f41d6e62b92bd9c87c2f10125bba1a34bfcb Mon Sep 17 00:00:00 2001 From: Zeeve <155419506+Thezeeve@users.noreply.github.com> Date: Tue, 12 Aug 2025 01:00:35 +0100 Subject: [PATCH] docs: fix grammar, typos, and improve clarity in Websites tutorial MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Corrected "Web Sites" to "Websites" for consistency. - Fixed capitalization: "apis" → "APIs". - Replaced "server" with "serve" in static files section. These changes improve readability and maintain professional tone in the tutorial. --- TUTORIAL_2.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/TUTORIAL_2.md b/TUTORIAL_2.md index 902a10c..1e9c29d 100644 --- a/TUTORIAL_2.md +++ b/TUTORIAL_2.md @@ -1,6 +1,6 @@ # Web Sites -Taking advantage of the IPFS and BLESS Network at the Edge, we can serve fast web sites, apis, and static files to users all around the world. +Taking advantage of the IPFS and BLESS Network at the Edge, we can serve fast websites, APIs, and static files to users all around the world. We can do it easily and quickly using the BLESSNET CLI. In this tutorial we will dive into creating websites on BLESS Net, modifying routes, serving files, and creating a simple API. @@ -60,7 +60,7 @@ server.start(); ### Serving Static Files -There is often a need to server static files, images, styles, client side javascript. We've also provided a quick feature that takes care of that for you, you may recognize this command from another JavaScript based framework. +There is often a need to serve static files, images, styles, client side javascript. We've also provided a quick feature that takes care of that for you, you may recognize this command from another JavaScript based framework. `server.statics("public", "/");`