Skip to content

Commit

Permalink
Upd txt 3
Browse files Browse the repository at this point in the history
  • Loading branch information
hansdragnes committed Jul 11, 2024
1 parent 7dd850e commit 8dfcf73
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ const http = require('http');
const server = http.createServer((req, res) => {
res.statusCode = 200;
res.setHeader('Content-Type', 'text/plain');
res.end('Hello, Ci//Cd World!');
res.end('Hello, CiCd World!');
});

const port = process.env.PORT || 3000;
Expand Down

0 comments on commit 8dfcf73

Please sign in to comment.