Skip to content

Commit 566bd10

Browse files
committed
fix typos
1 parent ec3d14b commit 566bd10

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ It's not recommended, but it's possible to add NTLM-Authentication without valid
4343
| Name | type | default | description |
4444
|------|------|---------|-------------|
4545
| `badrequest` | `function` | `function(request, response, next) { response.sendStatus(400); }` | Function to handle HTTP 400 Bad Request. |
46-
| `internalservererror` | `function` | `function(request, response, next) { response.sendStatus(500); }` | Function to handle 500 Internal Server Error. |
46+
| `internalservererror` | `function` | `function(request, response, next) { response.sendStatus(500); }` | Function to handle HTTP 500 Internal Server Error. |
4747
| `forbidden` | `function` | `function(request, response, next) { response.sendStatus(403); }` | Function to handle HTTP 403 Forbidden. |
4848
| `prefix` | `string` | `[express-ntlm]` | The prefix is the first argument passed to the `debug`-function. |
4949
| `debug` | `function` | `function() {}` | Function to log the debug messages. See [logging](#logging) for more details. |
@@ -69,4 +69,4 @@ It's not recommended, but it's possible to add NTLM-Authentication without valid
6969

7070
### notes
7171

72-
All NTLM-fields (`UserName`, `DomainName`, `Workstartion`) are also available within `response.locals.ntlm`, which means you can access it through your template engine (e.g. jade or ejs) when rendering using `ntlm` (e.g. `<%= ntlm.UserName %>`).
72+
All NTLM-fields (`UserName`, `DomainName`, `Workstation`) are also available within `response.locals.ntlm`, which means you can access it through your template engine (e.g. jade or ejs) while rendering (e.g. `<%= ntlm.UserName %>`).

0 commit comments

Comments
 (0)