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: AnyEvent-0.15~1 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=d14259c894934ec72893ea79cf41143995d46d3d;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"; }