Skip to content
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
Move newline around in code example
  • Loading branch information
davepagurek committed Apr 6, 2024
commit fd0696b5159f870e1a1c3db49a46a756a17df825
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ p5.js is a free and open-source JavaScript library for accessible creative codin
```js
function setup() {
  createCanvas(400, 400);

  background(255);
}

function draw() {
  circle(mouseX, mouseY, 80);
}
Expand Down