From 552ef6fd5281361d6ab8973e73b95ea504ba46e7 Mon Sep 17 00:00:00 2001 From: TJ Holowaychuk Date: Tue, 27 Aug 2013 21:10:29 -0700 Subject: [PATCH] typo --- examples/conditional-middleware.js | 1 - 1 file changed, 1 deletion(-) diff --git a/examples/conditional-middleware.js b/examples/conditional-middleware.js index 2a2ba78..6345fb9 100644 --- a/examples/conditional-middleware.js +++ b/examples/conditional-middleware.js @@ -25,7 +25,6 @@ app.use(function(next){ } else { this.body = 'Hello World'; yield logger(next); - yield next; } } });