master
TJ Holowaychuk 2013-08-17 11:57:27 -07:00
parent cdba6f87ed
commit 5095131e95
1 changed files with 1 additions and 1 deletions

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;