0
0
Fork 0

fixed small error

This commit is contained in:
Gibheer 2012-10-05 08:05:32 +02:00
parent bbbc743a93
commit 30399df1c7
1 changed files with 1 additions and 1 deletions

View File

@ -6,7 +6,7 @@ module Zero
# rack compatible controllers. It catches #call and creates a new instance
# with the environment and calls #render on it.
class Controller
def self << call(env)
def self.call(env)
new(Request.new(env)).render
end
end