From 1685fbf6f4121e93d9999f7cf80f8da7bdeb5961 Mon Sep 17 00:00:00 2001 From: Allan Date: Fri, 12 Dec 2025 13:25:56 -0700 Subject: [PATCH] Fix grammatical error in the first section of the tutorial introduction The comparison made with frameworks in a plural form, so we need to add the "s" at the end of framework. The words "also" and "as well" in the same declaration is redundant, so we need to remove the add-on marker "as well" for simplicity. The word "also" might be understood as connecting to the word frameworks, implying other frameworks also run in the browser, which is the opposite of what we are trying to communicate. So I'm suggesting we remove it, keeping the sentence direct. --- docs/tutorial/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/tutorial/index.md b/docs/tutorial/index.md index 64d5db7e..cfd55030 100644 --- a/docs/tutorial/index.md +++ b/docs/tutorial/index.md @@ -31,7 +31,7 @@ import { code, testcases } from './data' It's great to have you here! This playground is will help you get started with Elysia interactively. -Unlike traditional backend framework, **Elysia can also run in a browser** as well! Although it doesn't support all features, it's a perfect environment for learning and experimentation. +Unlike traditional backend frameworks, **Elysia can run in a browser**! Although it doesn't support all features, it's a perfect environment for learning and experimentation. You can check out the API docs by clicking on the left sidebar.