Fix missing semicolon in kemal#run

This commit is contained in:
Sdogruyol 2017-02-06 20:16:51 +03:00
parent 06d02e7264
commit 72dc6cf775
1 changed files with 1 additions and 1 deletions

View File

@ -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.