1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00
namespace_ladder can be nil here
This commit is contained in:
Akira Matsuda 2016-12-12 21:34:22 +09:00
parent f1878baad5
commit edf4bff77c

View file

@ -54,7 +54,7 @@ module Rails
end.join
# Combine the 3 parts to generate complete route entry
namespace_ladder + route + end_ladder
"#{namespace_ladder}#{route}#{end_ladder}"
end
end
end