Skip to content

Commit

Permalink
バグの修正
Browse files Browse the repository at this point in the history
  • Loading branch information
otoneko1102 committed Sep 18, 2024
1 parent ee841c0 commit 4910444
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion script.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@ document.addEventListener('DOMContentLoaded', () => {
const pageName = document.getElementById('name');
const descriptionDiv = document.getElementById('description');
const newParagraph = document.createElement('p');
newParagraph.textContent = 'Not found.'
pageName.textContent = '404';
newParagraph.textContent = 'Not found.';
lines.forEach(line => {
if (line.trim()) {
const args = line.split(' ');
Expand Down

0 comments on commit 4910444

Please sign in to comment.