Fix readme.md code

This commit is contained in:
Christopher Cookman 2024-12-22 23:13:05 -07:00
parent a4a8ee10de
commit 43e539f534

View file

@ -57,7 +57,7 @@ app.use((req, res, next) => {
// The very very few direct routes
app.get("/", (req, res) => {
const readmePath = path.join(__dirname, 'readme.md');
const readmePath = path.join(__dirname, 'README.md');
fs.readFile(readmePath, 'utf8', (err, data) => {
if (err) {