From a437329f790f41148619bb1550022fef238cbaf7 Mon Sep 17 00:00:00 2001 From: Jan Carlo Viray Date: Tue, 17 Jun 2014 12:40:06 -0700 Subject: [PATCH] Fix misspelled word from "backwords" to "backwards" --- docs/guide.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/guide.md b/docs/guide.md index 415e271..799c126 100644 --- a/docs/guide.md +++ b/docs/guide.md @@ -131,9 +131,9 @@ function *random(next) { } }; -function *backwords(next) { - if ('/backwords' == this.path) { - this.body = 'sdrowkcab'; +function *backwards(next) { + if ('/backwards' == this.path) { + this.body = 'sdrawkcab'; } else { yield next; } @@ -148,7 +148,7 @@ function *pi(next) { } function *all(next) { - yield random.call(this, backwords.call(this, pi.call(this, next))); + yield random.call(this, backwards.call(this, pi.call(this, next))); } app.use(all);