Skip to content

Commit 05a599d

Browse files
Update README.md
1 parent 7c4379b commit 05a599d

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Sample Horse server validate basic authentication:
66

77
```delphi
88
uses
9-
Horse, Horse.BasicAuthentication;
9+
Horse, Horse.BasicAuthentication, System.SysUtils;
1010
1111
var
1212
App: THorse;
@@ -23,7 +23,7 @@ begin
2323
App.Post('ping',
2424
procedure(Req: THorseRequest; Res: THorseResponse; Next: TProc)
2525
begin
26-
Req.Send('pong');
26+
Res.Send('pong');
2727
end);
2828
2929
App.Start;

0 commit comments

Comments
 (0)