Description: Patch to fix incorrect code to synopsis.
Forwarded: https://github.com/Ovid/MooseX--Role--Strict/pull/4
Author: Oleg Gashev <oleg@gashev.net>

--- a/lib/MooseX/Role/Strict.pm
+++ b/lib/MooseX/Role/Strict.pm
@@ -125,7 +125,7 @@
     {
         package My::Class;
         use Moose;
-        with 'My::Role' => { -excludes => 'conflict' };
+        with 'My::Role' => { -excludes => [ 'conflict' ] };
         sub conflict {}
     }
 
