Skip to content

Commit 3f67473

Browse files
committed
Fix incorrect usage of String.join method in P_3_1_3_03
1 parent 3b7d1bd commit 3f67473

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

01_P/P_3_1_3_03/sketch.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ function setup() {
6060
textFont('monospace', 20);
6161
noStroke();
6262

63-
joinedText = joinedText.join(joinedText, ' ');
63+
joinedText = joinedText.join(' ');
6464
charSet = getUniqCharacters();
6565
for (var i = 0; i < charSet.length; i++) {
6666
counters[i] = 0;

0 commit comments

Comments
 (0)