Fix code formatting in changelog

A code block example was not markdown formatted as code.
This commit is contained in:
Matt Boehlig 2013-05-08 14:34:16 -05:00
parent fe84e0ad52
commit 2e0bee0c56

View File

@ -23,8 +23,10 @@
* Serializers now can filter attributes with `only` and `except`:
```
UserSerializer.new(user, only: [:first_name, :last_name])
UserSerializer.new(user, except: :first_name)
```
* Basic Mongoid support. We now include our mixins in the right place.