aboutsummaryrefslogtreecommitdiffstats
path: root/actionview
diff options
context:
space:
mode:
authorJean Boussier <jean.boussier@gmail.com>2019-07-19 15:17:43 +0200
committerJean Boussier <jean.boussier@gmail.com>2019-07-19 15:18:57 +0200
commitbd78d3eecf25aeb7da8e9c987b6ad00d522d7c80 (patch)
tree98dbca82564cbddcb22d3755ea08fbfeee241a7e /actionview
parentd3b951f326c4facd693d5e3f92cc40ccdbf6dc1b (diff)
downloadrails-bd78d3eecf25aeb7da8e9c987b6ad00d522d7c80.tar.gz
rails-bd78d3eecf25aeb7da8e9c987b6ad00d522d7c80.tar.bz2
rails-bd78d3eecf25aeb7da8e9c987b6ad00d522d7c80.zip
Fix a minor typo in ActionView::UnboundTemplate
Diffstat (limited to 'actionview')
-rw-r--r--actionview/lib/action_view/unbound_template.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/actionview/lib/action_view/unbound_template.rb b/actionview/lib/action_view/unbound_template.rb
index d28bab91b6..3d4434b2e9 100644
--- a/actionview/lib/action_view/unbound_template.rb
+++ b/actionview/lib/action_view/unbound_template.rb
@@ -4,9 +4,9 @@ require "concurrent/map"
module ActionView
class UnboundTemplate
- def initialize(source, identifer, handler, options)
+ def initialize(source, identifier, handler, options)
@source = source
- @identifer = identifer
+ @identifier = identifier
@handler = handler
@options = options
@@ -22,7 +22,7 @@ module ActionView
options = @options.merge(locals: locals)
Template.new(
@source,
- @identifer,
+ @identifier,
@handler,
options
)