From b7af6a50fcad66df030e594bd1d7067aa7eab6d7 Mon Sep 17 00:00:00 2001 From: clux Date: Mon, 6 Jun 2016 09:50:43 +0100 Subject: [PATCH] fix obvious typo --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index e8b7d6f..ed06630 100644 --- a/README.md +++ b/README.md @@ -41,7 +41,7 @@ If the `groupSize` is even, then the sum of seeds per groups are equal across al You can check what your minimal group size will be by passing in the number of groups you want to split the players over: ```js -group.minimalGroupSize(16, 4); // 5 +group.minimalGroupSize(16, 4); // 4 group.minimalGroupSize(25, 5); // 5 group.minimalGroupSize(8, 5); // 4 group.minimalGroupSize(numPlayers, groupSize); // general