From b13ad3e5ca6ed85ee021a1bb26f99d43572f65d5 Mon Sep 17 00:00:00 2001 From: Ofek Lev Date: Thu, 14 Nov 2024 22:50:08 -0500 Subject: [PATCH 1/2] Fix typos in README --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 8de17ec9ea..69275c60ec 100644 --- a/README.md +++ b/README.md @@ -52,7 +52,7 @@ npx million@latest Once your down, just run your project and information should show up in your command line! -> Having issues installing? [**→ View the installation guide**](https://million.dev/docs/install) +> Having issues installing? [**→ View the installation guide**](https://million.dev/docs) ## Why Million.js? @@ -120,7 +120,7 @@ From here, we can see that the `

` tag needs to be updated. React will then up React is slow. -The issue with React's reconciliation it becomes **exponentially slower** the more JSX elements you have. With this simple `App`, it only needs to diff a few elements. In a real world React app, you can easily have hundreds of elements, slowing down interface updates. +The issue with React's reconciliation is that it becomes **exponentially slower** the more JSX elements you have. With this simple `App`, it only needs to diff a few elements. In a real world React app, you can easily have hundreds of elements, slowing down interface updates. Million.js solves this by **skipping the diffing step entirely** and directly updating the DOM node. From 76ad8d19b663eb27cd6e66468cce4bff59c8c60a Mon Sep 17 00:00:00 2001 From: Ofek Lev Date: Thu, 14 Nov 2024 22:57:36 -0500 Subject: [PATCH 2/2] Another typo --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 69275c60ec..474a695902 100644 --- a/README.md +++ b/README.md @@ -50,7 +50,7 @@ The Million.js CLI will automatically install the package and configure your pro npx million@latest ``` -Once your down, just run your project and information should show up in your command line! +Once you're done, just run your project and information should show up in your command line! > Having issues installing? [**→ View the installation guide**](https://million.dev/docs)