'module' is reserved word. Sample of code with error - not cool.

This commit is contained in:
Egor Homakov 2012-03-13 15:13:05 +04:00
parent ce72c0c784
commit 829e379700

@ -174,8 +174,8 @@ class Base < Metal
# Shortcut helper that returns all the ActionController modules except the ones passed in the argument: # Shortcut helper that returns all the ActionController modules except the ones passed in the argument:
# #
# class MetalController # class MetalController
# ActionController::Base.without_modules(:ParamsWrapper, :Streaming).each do |module| # ActionController::Base.without_modules(:ParamsWrapper, :Streaming).each do |left|
# include module # include left
# end # end
# end # end
# #