Skip to content

Commit

Permalink
typo
Browse files Browse the repository at this point in the history
  • Loading branch information
rhirano0715 committed Mar 18, 2023
1 parent f83c45c commit 85ccecd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@

const nounList = wordList.filter(word => word.type === 'noun');
const particleList = wordList.filter(word => word.type === 'particle');
const verbList = wordList.filter(word.type === 'verb');
const verbList = wordList.filter(word => word.type === 'verb');

setInterval(() => {
const textContainer = document.getElementById("text-container");
Expand Down

0 comments on commit 85ccecd

Please sign in to comment.