Fix resolve usage in the release notes

[ci skip]
This commit is contained in:
Rafael Mendonça França 2017-03-17 13:14:51 -04:00
parent c053d95481
commit 7b02f86680
No known key found for this signature in database
GPG Key ID: FC23B6D0F1EEE948
1 changed files with 1 additions and 1 deletions

View File

@ -120,7 +120,7 @@ The `resolve` method allows customizing polymorphic mapping of models.
``` ruby
resource :basket
resolve(class: "Basket") { [:basket] }
resolve("Basket") { [:basket] }
```
``` erb