Skip to content

Commit

Permalink
docs: change simple to sample in example descriptions
Browse files Browse the repository at this point in the history
  • Loading branch information
ryhinchey authored and dougwilson committed Apr 13, 2020
1 parent edcfd34 commit b94f3ff
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -248,7 +248,7 @@ advanced uses, this compile function is directly available.

### express/connect

Simple app that will log all request in the Apache combined format to STDOUT
Sample app that will log all request in the Apache combined format to STDOUT

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

### vanilla http server

Simple app that will log all request in the Apache combined format to STDOUT
Sample app that will log all request in the Apache combined format to STDOUT

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

#### single file

Simple app that will log all requests in the Apache combined format to the file
Sample app that will log all requests in the Apache combined format to the file
`access.log`.

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

#### log file rotation

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

Expand Down

0 comments on commit b94f3ff

Please sign in to comment.