Skip to content

Commit 01ef815

Browse files
committed
Fix docs
1 parent f08b79c commit 01ef815

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

DOCS.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1911,7 +1911,7 @@ users = [
19111911

19121912
### Set Literals
19131913

1914-
Coconut allows an optional `s` to be prepended in front of Python set literals. While in most cases this does nothing, in the case of the empty set it lets Coconut know that it is an empty set and not an empty dictionary.
1914+
Coconut allows an optional `s` to be prepended in front of Python set literals. While in most cases this does nothing, in the case of the empty set it lets Coconut know that it is an empty set and not an empty dictionary. Set literals also support unpacking syntax (e.g. `s{*xs}`).
19151915

19161916
Additionally, Coconut also supports replacing the `s` with an `f` to generate a `frozenset` or an `m` to generate a Coconut [`multiset`](#multiset).
19171917

@@ -2936,8 +2936,6 @@ async def fmap_over_async_iters(func, async_iter):
29362936
```
29372937
such that `fmap` can effectively be used as an async map.
29382938

2939-
For `None`, `fmap` will always return `None`, ignoring the function passed to it.
2940-
29412939
##### Example
29422940

29432941
**Coconut:**

0 commit comments

Comments
 (0)