Merge pull request #5 from keaner/patch-3

Adds missing parameter in previous pull request
diff --git a/lib/func.dart b/lib/func.dart
index bd28b7d..dc6c564 100644
--- a/lib/func.dart
+++ b/lib/func.dart
@@ -50,4 +50,4 @@
 typedef void VoidFunc7Opt1<A, B, C, D, E, F, G>(A a, B b, C c, D d, E e, F f, [G g]);
 typedef void VoidFunc8Opt1<A, B, C, D, E, F, G, H>(A a, B b, C c, D d, E e, F f, G g, [H h]);
 typedef void VoidFunc9Opt1<A, B, C, D, E, F, G, H, I>(A a, B b, C c, D d, E e, F f, G g, H h, [I i]);
-typedef void VoidFunc10Opt1<A, B, C, D, E, F, G, H, I>(A a, B b, C c, D d, E e, F f, G g, H h, I i, [J j]);
+typedef void VoidFunc10Opt1<A, B, C, D, E, F, G, H, I, J>(A a, B b, C c, D d, E e, F f, G g, H h, I i, [J j]);
diff --git a/pubspec.yaml b/pubspec.yaml
index 81264e1..67ea524 100644
--- a/pubspec.yaml
+++ b/pubspec.yaml
@@ -1,5 +1,5 @@
 name: func
-version: 0.1.0
+version: 0.1.1
 description: >
   Typedefs defining commonly used function types to make it simpler to
   define members that return specific function types.