From 098dac5a594dad1c9c84ba17adebbd18bc6cc8a6 Mon Sep 17 00:00:00 2001 From: Hugh Kennedy Date: Fri, 20 Dec 2013 11:23:29 +1100 Subject: [PATCH] Fix typo s/requivalent/equivalent/g --- docs/api/context.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/api/context.md b/docs/api/context.md index 519e775..16ef4f8 100644 --- a/docs/api/context.md +++ b/docs/api/context.md @@ -131,7 +131,7 @@ this.throw('name required', 400) this.throw('something exploded') ``` - For example `this.throw('name required', 400)` is requivalent to: + For example `this.throw('name required', 400)` is equivalent to: ```js var err = new Error('name required');