From 4467b62dea13c6aa7246fd0dfbcd92338b6db22e Mon Sep 17 00:00:00 2001 From: SHIBAHARA Hiroki Date: Thu, 19 Sep 2024 20:55:01 +0900 Subject: [PATCH] fix links to "Field Guide to Debugging" --- src/content/tutorials/en/setting-up-your-environment.mdx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/content/tutorials/en/setting-up-your-environment.mdx b/src/content/tutorials/en/setting-up-your-environment.mdx index da0c27b7b8..62e77864a4 100644 --- a/src/content/tutorials/en/setting-up-your-environment.mdx +++ b/src/content/tutorials/en/setting-up-your-environment.mdx @@ -275,7 +275,7 @@ Once your project is saved, you can share it! - The Coding Train: [1.2: p5.js Web Editor - p5.js Tutorial](https://www.youtube.com/watch?v=MXs1cOlidWs) - [p5.js reference page](/reference/) - [Javascript - MDN reference](https://developer.mozilla.org/en-US/docs/Web/JavaScript) -- [Field Guide to Debugging](https://docs.google.com/document/d/1Uc5Uey4_UDgix6-O0ez-pcRD-FZQSOaRD9TAGZYzD6c/edit) +- [Field Guide to Debugging](/tutorials/field-guide-to-debugging) - [How to Use the p5.js Web Editor with a Screen Reader](/tutorials/using-web-editor-with-screen-reader) --- @@ -446,7 +446,7 @@ Visit the [p5.js reference](/reference/) for more p5.js functions, such as other It is easy to spell function names wrong or forget a comma. Syntax rules help the computer interpret code. When a “rule” is broken (for example, if [`circle()`](/reference/p5/circle) is spelled wrong), a message will appear in the browser’s console. These errors are commonly referred to as bugs; when your code does not execute correctly, there might be a bug in your code!  - Visit these resources for instructions on how to view the console in specific browsers: [Chrome](https://developer.chrome.com/docs/devtools/console/reference/) | [Firefox](https://firefox-source-docs.mozilla.org/devtools-user/web_console/) | [Safari](https://support.apple.com/guide/safari-developer/safari-developer-tools-overview-dev073038698/11.0/mac/10.13) | [Edge](https://learn.microsoft.com/en-us/microsoft-edge/devtools-guide-chromium/console/) -- Visit the [Field Guide to Debugging](https://docs.google.com/document/d/1Uc5Uey4_UDgix6-O0ez-pcRD-FZQSOaRD9TAGZYzD6c/edit) for more information on how to fix errors in your code. +- Visit the [Field Guide to Debugging](/tutorials/field-guide-to-debugging) for more information on how to fix errors in your code. ### Accessibility note @@ -466,7 +466,7 @@ If you are using a screen reader, use the [p5.js Web Editor](https://editor.p5js - The Coding Train: [1.2: p5.js Web Editor - p5.js Tutorial](https://www.youtube.com/watch?v=MXs1cOlidWs) - [p5.js reference page](/reference/) - [Javascript - MDN reference](https://developer.mozilla.org/en-US/docs/Web/JavaScript) -- [Field Guide to Debugging](https://docs.google.com/document/d/1Uc5Uey4_UDgix6-O0ez-pcRD-FZQSOaRD9TAGZYzD6c/edit) +- [Field Guide to Debugging](/tutorials/field-guide-to-debugging) - [p5.js with VSCode](https://www.youtube.com/watch?v=zMAnM9ly0a8) (video tutorial) - [VSCode Overview](https://code.visualstudio.com/docs/getstarted/introvideos) - [p5.vscode reference](https://github.com/antiboredom/p5.vscode/blob/master/README.md)