Skip to content

Commit

Permalink
Update file path in parse-readme.js
Browse files Browse the repository at this point in the history
  • Loading branch information
MaxRohowsky committed Mar 9, 2024
1 parent f7be91f commit 214db9c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion parse-readme.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
const fs = require('fs');
const path = require('path');
const filePath = path.join(__dirname, 'readme.md');
const filePath = path.join(__dirname, 'README.md');
const dataFilePath = path.join(__dirname, 'data.json');

fs.readFile(filePath, 'utf8', (err, data) => {
Expand Down

0 comments on commit 214db9c

Please sign in to comment.