From 5095131e95806ec9376dcf8cb9a28ec12c23ef58 Mon Sep 17 00:00:00 2001 From: TJ Holowaychuk Date: Sat, 17 Aug 2013 11:57:27 -0700 Subject: [PATCH] docs --- docs/api.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/api.md b/docs/api.md index d44effd..474beec 100644 --- a/docs/api.md +++ b/docs/api.md @@ -464,7 +464,7 @@ this.accepts('html', 'json'); or use a switch: ```js -switch (this.accepts('json, html, text')) { +switch (this.accepts('json', 'html', 'text')) { case 'json': break; case 'html': break; case 'text': break;