Merge pull request #2085 from tricknotes/fix-doc

Fix example code in `doc/general/getting_started.md`
This commit is contained in:
Benjamin Fleischer 2017-03-27 21:06:31 -05:00 committed by GitHub
commit d24a7867b9

View File

@ -37,7 +37,7 @@ and
class CommentSerializer < ActiveModel::Serializer
attributes :name, :body
belongs_to :post_id
belongs_to :post
end
```