Skip to content

Commit

Permalink
Fix missing semicolon in kemal#run
Browse files Browse the repository at this point in the history
  • Loading branch information
sdogruyol committed Feb 6, 2017
1 parent 06d02e7 commit 72dc6cf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/kemal.cr
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down

0 comments on commit 72dc6cf

Please sign in to comment.