Skip to content

Commit e2c9d2b

Browse files
committed
Fix typo
1 parent dd39461 commit e2c9d2b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

DESIGN.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -364,7 +364,7 @@ Therefore, new standard factory methods will try to address the common entry poi
364364
- `create(AsyncGenerator<T, S>)` to batch-create signals based on request patterns
365365
- `create(Consumer<? super SingleEmitter<T>>)` to relay a single value or error from other reactive sources (i.e., addListener callbacks)
366366
- `create(Consumer<? super FlowEmitter<T>>)` to relay multiple values or error from multi-valued reactive-sources (i.e., button-clicks) while also give flow control options right there (buffer, drop, error, etc.).
367-
- `create(Consumer<? super CompletionEmitter>)` signal a completion or error from valueless reactive sources
367+
- `create(Consumer<? super CompletionEmitter)>` signal a completion or error from valueless reactive sources
368368

369369
The following table lists where these create methods will be available in respect of the base types:
370370

@@ -374,7 +374,7 @@ The following table lists where these create methods will be available in respec
374374
| `create(AsyncOnSubscribe<T, S>)` | Yes | No | No | No |
375375
| `create(Consumer<? super SingleEmitter<T>>)` | Yes | Yes | Yes | No |
376376
| `create(Consumer<? super FlowEmitter<T>>)` | Yes | Yes | Yes | No |
377-
| `create(Consumer<? super CompletionEmitter)>` | Yes | Yes | No | Yes |
377+
| `create(Consumer<? super CompletionEmitter>)` | Yes | Yes | No | Yes |
378378

379379
The first two `create` methods take an implementation of an interface which provides state and the generator methods:
380380

0 commit comments

Comments
 (0)