Skip to content

Commit b67a9ae

Browse files
authored
nit fix in README.md (#128)
1 parent 6d56fde commit b67a9ae

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ logically-connected sync/async code execution.
166166
```typescript
167167
namespace AsyncContext {
168168
class Variable<T> {
169-
constructor(options: AsyncVariableOptions<T>);
169+
constructor(options?: AsyncVariableOptions<T>);
170170
get name(): string;
171171
get(): T | undefined;
172172
run<R>(value: T, fn: (...args: any[])=> R, ...args: any[]): R;

0 commit comments

Comments
 (0)