From c1ddbd99a3816d6d698c519d4959b0fed51f3f29 Mon Sep 17 00:00:00 2001 From: smoothdvd Date: Tue, 30 Apr 2019 16:01:25 +0800 Subject: [PATCH] Fix typo in docs example (#156) --- docs/migration-guide.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/migration-guide.md b/docs/migration-guide.md index 38babf18c..f6c63f167 100644 --- a/docs/migration-guide.md +++ b/docs/migration-guide.md @@ -57,7 +57,7 @@ end ```ruby Pagy::VARS[:items] = 10 -Pagy::Vars[:size] = [5,4,4,5] +Pagy::VARS[:size] = [5,4,4,5] ``` Remove all the old settings and uncomment and edit the new settings in the `pagy.rb` initializer _(see [Configuration](how-to.md#global-configuration))_.