From 016412b3d7dbc54048c2f027f85adcdce56df0ae Mon Sep 17 00:00:00 2001 From: Joshua Dover Date: Sat, 12 Jan 2013 19:18:08 -0600 Subject: [PATCH] Fixed README typo --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 9123437c..0f3cf75c 100644 --- a/README.md +++ b/README.md @@ -140,7 +140,7 @@ more concise json. To disable the root element for arrays, you have 3 options: #### 1. Disable root globally for in `ArraySerializer`. In an initializer: ```ruby -ActiveSupport.on_load(:active_model_serializers) do +ActiveSupport.on_load(:active_model_serializer) do self.root = false end ```