README.md in active_model_serializers-0.9.7 vs README.md in active_model_serializers-0.9.8
- old
+ new
@@ -83,10 +83,10 @@
In this case, Rails will look for a serializer named `PostSerializer`, and if
it exists, use it to serialize the `Post`.
This also works with `respond_with`, which uses `to_json` under the hood. Also
note that any options passed to `render :json` will be passed to your
-serializer and available as `@options` inside.
+serializer and available as `@serialization_options` inside.
To specify a custom serializer for an object, you can specify the
serializer when you render the object:
```ruby