aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGuillermo Iguaran <guilleiguaran@gmail.com>2015-12-21 21:22:03 -0500
committerGuillermo Iguaran <guilleiguaran@gmail.com>2015-12-21 21:22:03 -0500
commit17a4e450489a785af53d3e11f5a35ec1e8ea0903 (patch)
treef1cd01f3fb1c95451a6d15fd3d7f0b5d0f15f8c7
parente4e9d91097d68fa9da4d08b7cad9b1fc521cf9c1 (diff)
parentfc027e1faf39f0deacd734fe0a46eb5ee6d70851 (diff)
downloadrails-17a4e450489a785af53d3e11f5a35ec1e8ea0903.tar.gz
rails-17a4e450489a785af53d3e11f5a35ec1e8ea0903.tar.bz2
rails-17a4e450489a785af53d3e11f5a35ec1e8ea0903.zip
Merge pull request #22746 from davidenglishmusic/master
corrects a typo [ci-skip]
-rw-r--r--guides/source/i18n.md2
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>
```