From cd36fb15585120d88d08b02171e4594ce1f67920 Mon Sep 17 00:00:00 2001 From: tgs8717 Date: Wed, 8 Apr 2026 13:27:54 -0400 Subject: [PATCH 1/2] changed broken link using suggested relative link (to be marked as draft --- .../examples/en/03_Imported_Media/00_Words/description.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/content/examples/en/03_Imported_Media/00_Words/description.mdx b/src/content/examples/en/03_Imported_Media/00_Words/description.mdx index d66e3c9c67..1c89b3b551 100644 --- a/src/content/examples/en/03_Imported_Media/00_Words/description.mdx +++ b/src/content/examples/en/03_Imported_Media/00_Words/description.mdx @@ -19,6 +19,6 @@ remix: The text() function is used for inserting text into the canvas. You can change the font and text size using the loadFont() -and fontSize() functions. +and textSize() functions. The text can be aligned left, center, or right with the textAlign() function, and, like shapes, text can be colored with fill(). \ No newline at end of file From 4d7cfafb49164c98e457f4966984486b9dc4e0ec Mon Sep 17 00:00:00 2001 From: tgs8717 Date: Wed, 15 Apr 2026 13:03:02 -0400 Subject: [PATCH 2/2] fix discrepancy between comment instruction and what the code actually does for a trees() function example --- src/content/tutorials/en/organizing-code-with-functions.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/content/tutorials/en/organizing-code-with-functions.mdx b/src/content/tutorials/en/organizing-code-with-functions.mdx index ede218f60d..85628e2b38 100644 --- a/src/content/tutorials/en/organizing-code-with-functions.mdx +++ b/src/content/tutorials/en/organizing-code-with-functions.mdx @@ -696,7 +696,7 @@ function draw() {   // call the mountains function   mountains(); -  // draw two trees +  // draw three trees   trees() }