This commit is contained in:
TJ Holowaychuk 2013-08-17 11:57:27 -07:00
parent cdba6f87ed
commit 5095131e95

View file

@ -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;