1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00
This commit is contained in:
Akira Matsuda 2015-09-21 01:32:54 +09:00
parent c971bc0568
commit 4a4f8500a0

View file

@ -61,7 +61,7 @@ module ActionDispatch
end
def traces
appplication_trace_with_ids = []
application_trace_with_ids = []
framework_trace_with_ids = []
full_trace_with_ids = []
@ -69,7 +69,7 @@ module ActionDispatch
trace_with_id = { id: idx, trace: trace }
if application_trace.include?(trace)
appplication_trace_with_ids << trace_with_id
application_trace_with_ids << trace_with_id
else
framework_trace_with_ids << trace_with_id
end
@ -78,7 +78,7 @@ module ActionDispatch
end
{
"Application Trace" => appplication_trace_with_ids,
"Application Trace" => application_trace_with_ids,
"Framework Trace" => framework_trace_with_ids,
"Full Trace" => full_trace_with_ids
}