diff --git a/README.md b/README.md index 318e05d..1d174dd 100644 --- a/README.md +++ b/README.md @@ -26,7 +26,7 @@ gem 'i18n' Then configure I18n with some translations, and a default locale: ```ruby -I18n.load_path << Dir[File.expand_path("config/locales") + "/*.yml"] +I18n.load_path += Dir[File.expand_path("config/locales") + "/*.yml"] I18n.default_locale = :en # (note that `en` is already the default!) ```