Skip to content

Commit

Permalink
Fix HTTP header in readme example
Browse files Browse the repository at this point in the history
  • Loading branch information
LukasBoersma committed Nov 22, 2015
1 parent a28d318 commit e380061
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ var app = new FCGIApplication();

// Handle requests by responding with a 'Hello World' message
app.OnRequestReceived += (sender, request) => {
request.WriteResponseASCII("Content-Type:text/html\n\nHello World!");
request.WriteResponseASCII("HTTP/1.1 200 OK\nContent-Type:text/html\n\nHello World!");
request.Close();
};

Expand Down

0 comments on commit e380061

Please sign in to comment.