From b94f3ffe5c346740b704321da6bd47e7d436a0d6 Mon Sep 17 00:00:00 2001 From: Ryan Hinchey Date: Thu, 9 Apr 2020 20:25:03 -0400 Subject: [PATCH] docs: change simple to sample in example descriptions closes #237 --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index fc1c4b4..cf56f1d 100644 --- a/README.md +++ b/README.md @@ -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') @@ -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') @@ -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 @@ -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).