From 85e98d8d7d579cb02ae1a6810f39b2d5713a0bfc Mon Sep 17 00:00:00 2001 From: Michael Stapelberg Date: Sat, 3 Nov 2012 11:47:27 +0100 Subject: [PATCH] fix doc error: missing opening brace (Thanks bitonic) --- lib/AnyEvent/I3.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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"; }