summaryrefslogtreecommitdiffhomepage
path: root/p5.html.markdown
diff options
context:
space:
mode:
authorMarcel Ribeiro-Dantas <mribeirodantas@seqera.io>2022-12-10 12:05:34 -0300
committerMarcel Ribeiro-Dantas <mribeirodantas@seqera.io>2022-12-10 12:05:34 -0300
commitbba9f7df211d63293e2a957872d156a0a6dfcd48 (patch)
treecd8fe10053e400fe06009a4dc40cec3b2e5892b6 /p5.html.markdown
parent354fe6fe7dd8085b88b0b1a2af2f5e612fe196f2 (diff)
Fixes typos in many different English articles
Signed-off-by: Marcel Ribeiro-Dantas <mribeirodantas@seqera.io>
Diffstat (limited to 'p5.html.markdown')
-rw-r--r--p5.html.markdown4
1 files changed, 2 insertions, 2 deletions
diff --git a/p5.html.markdown b/p5.html.markdown
index f6084b98..d36d417f 100644
--- a/p5.html.markdown
+++ b/p5.html.markdown
@@ -29,11 +29,11 @@ function setup() {
}
function draw() {
- ellipse(10, 10, 50, 50); // creates a ellipse at the 10px from the left and 10px from the top with width adn height as 50 each, so its basically a circle.
+ ellipse(10, 10, 50, 50); // creates a ellipse at the 10px from the left and 10px from the top with width and height as 50 each, so its basically a circle.
//remember in p5.js the origin is at the top-left corner of the canvas
if (mouseIsPressed) {
- // mouseIsPressed is a boolean variable that changes to true if the mouse buttton is pressed down at that instant
+ // mouseIsPressed is a boolean variable that changes to true if the mouse button is pressed down at that instant
fill(0); // fill refers to the innner color or filling color of whatever shape you are going to draw next
} else {