Revert "fix unbalanced parens"

This reverts commit ce60b01c59a1b885c961965eeca96c45fc0ebc7d.
This commit is contained in:
oz 2021-05-08 14:25:04 +00:00
parent cbaca23028
commit 2a6d3a8265

@ -11,7 +11,7 @@ class Markovian
@@commands["markov"] = ":markov <length> <seed>- generates a markov chain of <length> words, starting with optional word <seed>"
match /markov$/, method: :markov
match /markov (\d+)$/, method: :markov
match /markov (\d+) ([\w ]+)$/, method: :markov
match /markov (\d+) ([\w ]+))$/, method: :markov
listen_to :channel
def listen(m)