提交 59241231 编写于 作者: R Robin Dupret

Merge pull request #14959 from akshay-vishnoi/doc_changes

Typo, grammar and textual changes [ci skip]
...@@ -114,7 +114,7 @@ def _set_detail(key, value) ...@@ -114,7 +114,7 @@ def _set_detail(key, value)
module ViewPaths module ViewPaths
attr_reader :view_paths, :html_fallback_for_js attr_reader :view_paths, :html_fallback_for_js
# Whenever setting view paths, makes a copy so we can manipulate then in # Whenever setting view paths, makes a copy so that we can manipulate them in
# instance objects as we wish. # instance objects as we wish.
def view_paths=(paths) def view_paths=(paths)
@view_paths = ActionView::PathSet.new(Array(paths)) @view_paths = ActionView::PathSet.new(Array(paths))
...@@ -134,7 +134,8 @@ def exists?(name, prefixes = [], partial = false, keys = [], options = {}) ...@@ -134,7 +134,8 @@ def exists?(name, prefixes = [], partial = false, keys = [], options = {})
end end
alias :template_exists? :exists? alias :template_exists? :exists?
# Add fallbacks to the view paths. Useful in cases you are rendering a :file. # Adds fallbacks to the view paths. Useful in cases when you are rendering
# a :file.
def with_fallbacks def with_fallbacks
added_resolvers = 0 added_resolvers = 0
self.class.fallbacks.each do |resolver| self.class.fallbacks.each do |resolver|
...@@ -227,7 +228,7 @@ def locale ...@@ -227,7 +228,7 @@ def locale
end end
# Overload locale= to also set the I18n.locale. If the current I18n.config object responds # Overload locale= to also set the I18n.locale. If the current I18n.config object responds
# to original_config, it means that it's has a copy of the original I18n configuration and it's # to original_config, it means that it has a copy of the original I18n configuration and it's
# acting as proxy, which we need to skip. # acting as proxy, which we need to skip.
def locale=(value) def locale=(value)
if value if value
...@@ -238,7 +239,7 @@ def locale=(value) ...@@ -238,7 +239,7 @@ def locale=(value)
super(@skip_default_locale ? I18n.locale : default_locale) super(@skip_default_locale ? I18n.locale : default_locale)
end end
# A method which only uses the first format in the formats array for layout lookup. # Uses the first format in the formats array for layout lookup.
def with_layout_format def with_layout_format
if formats.size == 1 if formats.size == 1
yield yield
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册