From 8d1e69a569b101e9bfa87407bcb22a453d40ab77 Mon Sep 17 00:00:00 2001 From: Chris Date: Sun, 24 Nov 2019 12:03:30 +0100 Subject: [PATCH] Remove links to deleted example files The dedicated example files have been removed as per #650 This change removes links in the README to those now deleted files. --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 88dae35d..c673789c 100644 --- a/README.md +++ b/README.md @@ -17,7 +17,7 @@ $ npm install debug `debug` exposes a function; simply pass this function the name of your module, and it will return a decorated version of `console.error` for you to pass debug statements to. This will allow you to toggle the debug output for different parts of your module as well as the module as a whole. -Example [_app.js_](./examples/node/app.js): +Example _app.js_: ```js var debug = require('debug')('http') @@ -40,7 +40,7 @@ http.createServer(function(req, res){ require('./worker'); ``` -Example [_worker.js_](./examples/node/worker.js): +Example _worker.js_: ```js var a = require('debug')('worker:a') @@ -246,7 +246,7 @@ setInterval(function(){ By default `debug` will log to stderr, however this can be configured per-namespace by overriding the `log` method: -Example [_stdout.js_](./examples/node/stdout.js): +Example _stdout.js_: ```js var debug = require('debug');