From c096be5e574b3cc65749b024d2b23ccb7e51bb1a Mon Sep 17 00:00:00 2001 From: PPPDUD <107440101+PPPDUD@users.noreply.github.com> Date: Fri, 17 Oct 2025 11:11:39 -0400 Subject: [PATCH 1/2] Update how-it-works.md --- docs/website/how-it-works.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/website/how-it-works.md b/docs/website/how-it-works.md index 9d3aee70..7645e14f 100644 --- a/docs/website/how-it-works.md +++ b/docs/website/how-it-works.md @@ -182,7 +182,7 @@ return function fun1_sort () { }; ``` -Functions such as `listGet`, `listReplace`, and `compareEqual` are part of the TurboWarp runtime and are implemented to match the strange behaviors of Scratch. The functions used by bubble sort are shown below, for your reference. Accuracy and performance are a higher priority than readability for these functions as they tend to be quite hot. +Functions such as `listGet`, `listReplace`, and `compareEqual` are part of the TurboWarp runtime and are implemented to match the strange behaviors of Scratch. The functions used by bubble sort are shown below, for your reference. Accuracy and performance are a higher priority than readability for these functions as they are rarely read by humans. ```js const isNotActuallyZero = val => { From 780858bdb059c1017b0a3e9e1a8c723344654d39 Mon Sep 17 00:00:00 2001 From: PPPDUD <107440101+PPPDUD@users.noreply.github.com> Date: Fri, 17 Oct 2025 18:44:31 -0400 Subject: [PATCH 2/2] Update how-it-works.md for interpretation corrections --- docs/website/how-it-works.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/website/how-it-works.md b/docs/website/how-it-works.md index 7645e14f..75263e18 100644 --- a/docs/website/how-it-works.md +++ b/docs/website/how-it-works.md @@ -182,7 +182,7 @@ return function fun1_sort () { }; ``` -Functions such as `listGet`, `listReplace`, and `compareEqual` are part of the TurboWarp runtime and are implemented to match the strange behaviors of Scratch. The functions used by bubble sort are shown below, for your reference. Accuracy and performance are a higher priority than readability for these functions as they are rarely read by humans. +Functions such as `listGet`, `listReplace`, and `compareEqual` are part of the TurboWarp runtime and are implemented to match the strange behaviors of Scratch. The functions used by bubble sort are shown below, for your reference. Accuracy and performance are a higher priority than readability for these functions as they are frequently called by TurboWarp. ```js const isNotActuallyZero = val => {