diff options
author | Guillermo Iguaran <guilleiguaran@gmail.com> | 2015-12-21 21:22:03 -0500 |
---|---|---|
committer | Guillermo Iguaran <guilleiguaran@gmail.com> | 2015-12-21 21:22:03 -0500 |
commit | 17a4e450489a785af53d3e11f5a35ec1e8ea0903 (patch) | |
tree | f1cd01f3fb1c95451a6d15fd3d7f0b5d0f15f8c7 /guides/source | |
parent | e4e9d91097d68fa9da4d08b7cad9b1fc521cf9c1 (diff) | |
parent | fc027e1faf39f0deacd734fe0a46eb5ee6d70851 (diff) | |
download | rails-17a4e450489a785af53d3e11f5a35ec1e8ea0903.tar.gz rails-17a4e450489a785af53d3e11f5a35ec1e8ea0903.tar.bz2 rails-17a4e450489a785af53d3e11f5a35ec1e8ea0903.zip |
Merge pull request #22746 from davidenglishmusic/master
corrects a typo [ci-skip]
Diffstat (limited to 'guides/source')
-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> ``` |