aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_dispatch/middleware
diff options
context:
space:
mode:
authorKasper Timm Hansen <kaspth@gmail.com>2019-03-29 16:35:49 +0100
committerGitHub <noreply@github.com>2019-03-29 16:35:49 +0100
commit839b8d42cae1c900aa5029ddd0399415cf1b32da (patch)
tree34e1810024dab32b4663e886ec07f2ae2a77e896 /actionpack/lib/action_dispatch/middleware
parentda2c92377c7f36469e56dc25a4ac0604157ac778 (diff)
parent12701d5a46e378f216398d72c91c40f5da1bccd7 (diff)
downloadrails-839b8d42cae1c900aa5029ddd0399415cf1b32da.tar.gz
rails-839b8d42cae1c900aa5029ddd0399415cf1b32da.tar.bz2
rails-839b8d42cae1c900aa5029ddd0399415cf1b32da.zip
Merge pull request #35788 from prathamesh-sonpatki/fix-annotate-typo
Fix annotated typo
Diffstat (limited to 'actionpack/lib/action_dispatch/middleware')
-rw-r--r--actionpack/lib/action_dispatch/middleware/debug_exceptions.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/actionpack/lib/action_dispatch/middleware/debug_exceptions.rb b/actionpack/lib/action_dispatch/middleware/debug_exceptions.rb
index bb49bc4dda..59113e13f4 100644
--- a/actionpack/lib/action_dispatch/middleware/debug_exceptions.rb
+++ b/actionpack/lib/action_dispatch/middleware/debug_exceptions.rb
@@ -146,7 +146,7 @@ module ActionDispatch
message = []
message << " "
message << "#{exception.class} (#{exception.message}):"
- message.concat(exception.annoted_source_code) if exception.respond_to?(:annoted_source_code)
+ message.concat(exception.annotated_source_code) if exception.respond_to?(:annotated_source_code)
message << " "
message.concat(trace)