From 619b3b467c91465a5b627576ec209399bbe3c8f0 Mon Sep 17 00:00:00 2001 From: Smoren Date: Wed, 29 Jan 2025 14:55:10 +0300 Subject: [PATCH] README fix. --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 5c1cbce..c822214 100644 --- a/README.md +++ b/README.md @@ -214,10 +214,10 @@ Quick Reference | [`union`](#union) | Union of iterables | `set.union(...iterables)` | `set.unionAsync(...iterables)` | #### Combinatorics -| Iterator | Description | Sync Code Snippet | Async Code Snippet | -|------------------------------------------------|----------------------------------------|---------------------------------------------------|--------------------------------------------------------| -| [`cartesianProduct`](#cartesian-product) | Iterate cartesian product of iterables | `set.cartesianProduct(...iterables)` | `set.cartesianProductAsync(...iterables)` | -| [`permutations`](#permutations) | Permutations of iterables | `set.permutations(data, length)` | `set.permutationsAsync(data, length)` | +| Iterator | Description | Sync Code Snippet | Async Code Snippet | +|------------------------------------------------|----------------------------------------|-----------------------------------------------|----------------------------------------------------| +| [`cartesianProduct`](#cartesian-product) | Iterate cartesian product of iterables | `combinations.cartesianProduct(...iterables)` | `combinations.cartesianProductAsync(...iterables)` | +| [`permutations`](#permutations) | Permutations of iterables | `combinations.permutations(data, length)` | `combinations.permutationsAsync(data, length)` | #### Summary | Summary | Description | Sync Code Snippet | Async Code Snippet |