Skip to content

Commit

Permalink
fix typo in the example of default page meta data configurations
Browse files Browse the repository at this point in the history
  • Loading branch information
yorkxin committed Jan 4, 2012
1 parent 3e4a9ab commit f2e4722
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions README.markdown
Expand Up @@ -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
```

Expand Down

0 comments on commit f2e4722

Please sign in to comment.