From f2e4722b1fb3ad613a8ce86ea6b80292c6cf03c0 Mon Sep 17 00:00:00 2001 From: Yu-Cheng Chuang Date: Wed, 4 Jan 2012 10:40:33 +0800 Subject: [PATCH] fix typo in the example of default page meta data configurations --- README.markdown | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.markdown b/README.markdown index 5a3989e..07b1b62 100644 --- a/README.markdown +++ b/README.markdown @@ -157,10 +157,10 @@ If you want to force SeoHelper to render a default description meta tag, keyword ```ruby SeoHelper.configure do |config| # ... - config.skip_blank = false - config.default_description = "This is a really really awesome website" - config.default_keywords = "hello,world,yay" - config.default_image = "http://www.example.com/title.png" + config.skip_blank = false + config.default_page_description = "This is a really really awesome website" + config.default_page_keywords = "hello,world,yay" + config.default_page_image = "http://www.example.com/title.png" end ```