Fix missing semicolon in kemal#run
This commit is contained in:
parent
06d02e7264
commit
72dc6cf775
1 changed files with 1 additions and 1 deletions
|
@ -13,7 +13,7 @@ module Kemal
|
|||
|
||||
# Overload of self.run to allow just a block
|
||||
def self.run(&block)
|
||||
self.run nil & block
|
||||
self.run nil, &block
|
||||
end
|
||||
|
||||
# The command to run a `Kemal` application.
|
||||
|
|
Loading…
Reference in a new issue