diff options
author | David English <david@operaonfilm.com> | 2015-12-21 18:07:49 -0800 |
---|---|---|
committer | David English <david@operaonfilm.com> | 2015-12-21 18:07:49 -0800 |
commit | fc027e1faf39f0deacd734fe0a46eb5ee6d70851 (patch) | |
tree | f1cd01f3fb1c95451a6d15fd3d7f0b5d0f15f8c7 /guides | |
parent | e4e9d91097d68fa9da4d08b7cad9b1fc521cf9c1 (diff) | |
download | rails-fc027e1faf39f0deacd734fe0a46eb5ee6d70851.tar.gz rails-fc027e1faf39f0deacd734fe0a46eb5ee6d70851.tar.bz2 rails-fc027e1faf39f0deacd734fe0a46eb5ee6d70851.zip |
corrects a typo
Diffstat (limited to 'guides')
-rw-r--r-- | guides/source/i18n.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/source/i18n.md b/guides/source/i18n.md index 42589110b1..5bbd4048b9 100644 --- a/guides/source/i18n.md +++ b/guides/source/i18n.md @@ -470,7 +470,7 @@ OK! Now let's add a timestamp to the view, so we can demo the **date/time locali ```erb # app/views/home/index.html.erb <h1><%=t :hello_world %></h1> -<p><%= flash[:notice] %></p +<p><%= flash[:notice] %></p> <p><%= l Time.now, format: :short %></p> ``` |