Skip to content

Commit b94f3ff

Browse files
ryhincheydougwilson
authored andcommitted
docs: change simple to sample in example descriptions
closes #237
1 parent edcfd34 commit b94f3ff

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -248,7 +248,7 @@ advanced uses, this compile function is directly available.
248248

249249
### express/connect
250250

251-
Simple app that will log all request in the Apache combined format to STDOUT
251+
Sample app that will log all request in the Apache combined format to STDOUT
252252

253253
```js
254254
var express = require('express')
@@ -265,7 +265,7 @@ app.get('/', function (req, res) {
265265

266266
### vanilla http server
267267

268-
Simple app that will log all request in the Apache combined format to STDOUT
268+
Sample app that will log all request in the Apache combined format to STDOUT
269269

270270
```js
271271
var finalhandler = require('finalhandler')
@@ -291,7 +291,7 @@ http.createServer(function (req, res) {
291291

292292
#### single file
293293

294-
Simple app that will log all requests in the Apache combined format to the file
294+
Sample app that will log all requests in the Apache combined format to the file
295295
`access.log`.
296296

297297
```js
@@ -315,7 +315,7 @@ app.get('/', function (req, res) {
315315

316316
#### log file rotation
317317

318-
Simple app that will log all requests in the Apache combined format to one log
318+
Sample app that will log all requests in the Apache combined format to one log
319319
file per day in the `log/` directory using the
320320
[rotating-file-stream module](https://www.npmjs.com/package/rotating-file-stream).
321321

0 commit comments

Comments
 (0)