Merge pull request #8 from markstos/master
Jesse Luehrs [Tue, 9 Jul 2013 21:05:36 +0000 (14:05 -0700)]
fix missing semicolon in docs.

lib/Try/Tiny.pm

index 0da8660..134ad81 100644 (file)
@@ -493,7 +493,7 @@ Instead, you should capture the return value:
     my $success = try {
       die;
       1;
-    }
+    };
     return unless $success;
 
     say "This text WILL NEVER appear!";