diff --git a/README.rdoc b/README.rdoc
index 9beac8c..f552f55 100644
--- a/README.rdoc
+++ b/README.rdoc
@@ -241,10 +241,12 @@ Kaminari includes a handy template generator.
Kaminari provides an Array wrapper class that adapts a generic Array object to the paginate view helper.
However, the paginate helper doesn't automatically handle your Array object (this is intentional and by design).
Kaminari::paginate_array method converts your Array object into a paginatable Array that accepts page method.
- paginatable_array = Kaminari.paginate_array(my_array_object).page(params[:page]).per(10)
+
+ @paginatable_array = Kaminari.paginate_array(my_array_object).page(params[:page]).per(10)
You can specify the +total_count+ value through options Hash. This would be helpful when handling an Array-ish object that has a different +count+ value from actual +count+ such as RSolr search result or when you need to generate a custom pagination. For example:
- paginatable_array = Kaminari.paginate_array([], total_count: 145).page(params[:page]).per(10)
+
+ @paginatable_array = Kaminari.paginate_array([], total_count: 145).page(params[:page]).per(10)
== Creating friendly URLs and caching