Skip to content

Commit

Permalink
fix: comment error (#663)
Browse files Browse the repository at this point in the history
comment err. fix
  • Loading branch information
pirateIV authored Aug 28, 2023
1 parent 9a2db56 commit 0da39a7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion javascript/apis/introduction/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ function random(min,max) {
return Math.floor(Math.random()*(max-min)) + min;
}

// function to generate rnadom color
// function to generate random color

function randomRGB() {
return `rgb(${random(0, 255)},${random(0, 255)},${random(0, 255)})`;
Expand Down

0 comments on commit 0da39a7

Please sign in to comment.