aboutsummaryrefslogtreecommitdiffstats
path: root/actionview/lib/action_view/unbound_template.rb
diff options
context:
space:
mode:
Diffstat (limited to 'actionview/lib/action_view/unbound_template.rb')
-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
)