diff options
author | Xavier Noria <fxn@hashref.com> | 2013-06-08 14:32:27 -0700 |
---|---|---|
committer | Xavier Noria <fxn@hashref.com> | 2013-06-08 14:32:27 -0700 |
commit | 8b82387c97e60faff77c3db30e53abf2f94450d0 (patch) | |
tree | 0e7229150e094f1fe94ffc59372c410d956b222b /actionpack/lib/action_view | |
parent | 9f7ac5a0ff2e3b73071e40547cd27c03de8d0575 (diff) | |
parent | a3025975ec90de1e3743d127f90a114d3f37a516 (diff) | |
download | rails-8b82387c97e60faff77c3db30e53abf2f94450d0.tar.gz rails-8b82387c97e60faff77c3db30e53abf2f94450d0.tar.bz2 rails-8b82387c97e60faff77c3db30e53abf2f94450d0.zip |
Merge pull request #10889 from diatmpravin/fix-typo-in-action-view
fixed typo in action_view template
Diffstat (limited to 'actionpack/lib/action_view')
-rw-r--r-- | actionpack/lib/action_view/template.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/actionpack/lib/action_view/template.rb b/actionpack/lib/action_view/template.rb index c25b1efc2b..e2c50fec47 100644 --- a/actionpack/lib/action_view/template.rb +++ b/actionpack/lib/action_view/template.rb @@ -267,7 +267,7 @@ module ActionView method_name = self.method_name code = @handler.call(self) - # Make sure that the resulting String to be evalled is in the + # Make sure that the resulting String to be eval'd is in the # encoding of the code source = <<-end_src def #{method_name}(local_assigns, output_buffer) |