mirror of
https://gitea.invidious.io/iv-org/shard-kemal.git
synced 2024-08-15 00:53:36 +00:00
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
|
# Overload of self.run to allow just a block
|
||||||
def self.run(&block)
|
def self.run(&block)
|
||||||
self.run nil & block
|
self.run nil, &block
|
||||||
end
|
end
|
||||||
|
|
||||||
# The command to run a `Kemal` application.
|
# The command to run a `Kemal` application.
|
||||||
|
|
Loading…
Reference in a new issue