Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix links to "Field Guide to Debugging" #558

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/content/tutorials/en/setting-up-your-environment.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -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/p5js-with-screen-reader/)

---
Expand Down Expand Up @@ -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
Expand All @@ -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)
Expand Down