diff --git a/README.md b/README.md index f88ffafc88..4a0252127f 100644 --- a/README.md +++ b/README.md @@ -140,7 +140,7 @@ function App() { } ``` -Notice how when the `count` is updated, Million.js will directly update the DOM node. Million.js turns React reconciliation from `O(n^3)` (exponential time) to `O(1)` (constant time). +Notice how when the `count` is updated, Million.js will directly update the DOM node. Million.js turns React reconciliation from `O(n^3)` (cubic time) to `O(1)` (constant time). > How fast is it? [**→ View the benchmarks**](https://krausest.github.io/js-framework-benchmark/current.html) diff --git a/website/pages/docs/index.mdx b/website/pages/docs/index.mdx index 4aaee7d65d..260f6c5de3 100644 --- a/website/pages/docs/index.mdx +++ b/website/pages/docs/index.mdx @@ -101,7 +101,7 @@ function App() { } ``` -Notice how when the `count` is updated, Million.js will directly update the DOM node. Million.js turns React reconciliation from `O(n^3)` (exponential time) to `O(1)` (constant time). +Notice how when the `count` is updated, Million.js will directly update the DOM node. Million.js turns React reconciliation from `O(n^3)` (cubic time) to `O(1)` (constant time). > How fast is it? [**→ View the benchmarks**](https://krausest.github.io/js-framework-benchmark/current.html)