diff --git a/app/views/kaminari/_first_page.html.erb b/app/views/kaminari/_first_page.html.erb
index e624c7c..e22cc9b 100644
--- a/app/views/kaminari/_first_page.html.erb
+++ b/app/views/kaminari/_first_page.html.erb
@@ -2,7 +2,7 @@
- available local variables
url: url to the first page
current_page: a page object for the currently displayed page
- num_pages: total number of pages
+ total_pages: total number of pages
per_page: number of items to fetch per page
remote: data-remote
-%>
diff --git a/app/views/kaminari/_gap.html.erb b/app/views/kaminari/_gap.html.erb
index 3a97c2a..24f2766 100644
--- a/app/views/kaminari/_gap.html.erb
+++ b/app/views/kaminari/_gap.html.erb
@@ -1,7 +1,7 @@
<%# Non-link tag that stands for skipped pages...
- available local variables
current_page: a page object for the currently displayed page
- num_pages: total number of pages
+ total_pages: total number of pages
per_page: number of items to fetch per page
remote: data-remote
-%>
diff --git a/app/views/kaminari/_last_page.html.erb b/app/views/kaminari/_last_page.html.erb
index da3b4b7..a075d76 100644
--- a/app/views/kaminari/_last_page.html.erb
+++ b/app/views/kaminari/_last_page.html.erb
@@ -2,7 +2,7 @@
- available local variables
url: url to the last page
current_page: a page object for the currently displayed page
- num_pages: total number of pages
+ total_pages: total number of pages
per_page: number of items to fetch per page
remote: data-remote
-%>
diff --git a/app/views/kaminari/_next_page.html.erb b/app/views/kaminari/_next_page.html.erb
index b137a5c..70c9ca1 100644
--- a/app/views/kaminari/_next_page.html.erb
+++ b/app/views/kaminari/_next_page.html.erb
@@ -2,7 +2,7 @@
- available local variables
url: url to the next page
current_page: a page object for the currently displayed page
- num_pages: total number of pages
+ total_pages: total number of pages
per_page: number of items to fetch per page
remote: data-remote
-%>
diff --git a/app/views/kaminari/_page.html.erb b/app/views/kaminari/_page.html.erb
index a92e59b..ca0c26b 100644
--- a/app/views/kaminari/_page.html.erb
+++ b/app/views/kaminari/_page.html.erb
@@ -3,7 +3,7 @@
page: a page object for "this" page
url: url to this page
current_page: a page object for the currently displayed page
- num_pages: total number of pages
+ total_pages: total number of pages
per_page: number of items to fetch per page
remote: data-remote
-%>
diff --git a/app/views/kaminari/_paginator.html.erb b/app/views/kaminari/_paginator.html.erb
index f6295ba..31404e9 100644
--- a/app/views/kaminari/_paginator.html.erb
+++ b/app/views/kaminari/_paginator.html.erb
@@ -1,7 +1,7 @@
<%# The container tag
- available local variables
current_page: a page object for the currently displayed page
- num_pages: total number of pages
+ total_pages: total number of pages
per_page: number of items to fetch per page
remote: data-remote
paginator: the paginator that renders the pagination tags inside
diff --git a/app/views/kaminari/_prev_page.html.erb b/app/views/kaminari/_prev_page.html.erb
index 773cc7b..faf0e16 100644
--- a/app/views/kaminari/_prev_page.html.erb
+++ b/app/views/kaminari/_prev_page.html.erb
@@ -2,7 +2,7 @@
- available local variables
url: url to the previous page
current_page: a page object for the currently displayed page
- num_pages: total number of pages
+ total_pages: total number of pages
per_page: number of items to fetch per page
remote: data-remote
-%>