From: Michael Stapelberg Date: Sat, 3 Nov 2012 10:47:27 +0000 (+0100) Subject: fix doc error: missing opening brace (Thanks bitonic) X-Git-Tag: 4.14~14^2~7 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=85e98d8d7d579cb02ae1a6810f39b2d5713a0bfc;p=i3%2Fi3 fix doc error: missing opening brace (Thanks bitonic) --- diff --git a/lib/AnyEvent/I3.pm b/lib/AnyEvent/I3.pm index b0bf2a09..309a11c0 100644 --- a/lib/AnyEvent/I3.pm +++ b/lib/AnyEvent/I3.pm @@ -277,7 +277,7 @@ key being the name of the event and the value being a callback. workspace => sub { say "Workspaces changed" } ); - if ($i3->subscribe(\%callbacks)->recv->{success}) + if ($i3->subscribe(\%callbacks)->recv->{success}) { say "Successfully subscribed"; }