aboutsummaryrefslogtreecommitdiffstats
path: root/guides/source/i18n.md
diff options
context:
space:
mode:
authorohbarye <over.rye@gmail.com>2018-10-24 01:16:02 +0900
committerohbarye <over.rye@gmail.com>2018-10-24 01:16:02 +0900
commit7217179d1e03ab3d6ece4f3aa19fe29af2a496da (patch)
treef0267ea1f57c6ba69bf49b6f92adbd075e66ae05 /guides/source/i18n.md
parentadf61b891a781047e13773805f7f1c6d5db1bc7d (diff)
downloadrails-7217179d1e03ab3d6ece4f3aa19fe29af2a496da.tar.gz
rails-7217179d1e03ab3d6ece4f3aa19fe29af2a496da.tar.bz2
rails-7217179d1e03ab3d6ece4f3aa19fe29af2a496da.zip
Fix typo of duplicated `the` [ci skip]
Diffstat (limited to 'guides/source/i18n.md')
-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 eba71eec60..7465726dca 100644
--- a/guides/source/i18n.md
+++ b/guides/source/i18n.md
@@ -1105,7 +1105,7 @@ For several reasons the Simple backend shipped with Active Support only does the
That does not mean you're stuck with these limitations, though. The Ruby I18n gem makes it very easy to exchange the Simple backend implementation with something else that fits better for your needs, by passing a backend instance to the `I18n.backend=` setter.
-For example, you can replace the Simple backend with the the Chain backend to chain multiple backends together. This is useful when you want to use standard translations with a Simple backend but store custom application translations in a database or other backends.
+For example, you can replace the Simple backend with the Chain backend to chain multiple backends together. This is useful when you want to use standard translations with a Simple backend but store custom application translations in a database or other backends.
With the Chain backend, you could use the Active Record backend and fall back to the (default) Simple backend: