You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -479,7 +479,7 @@ Matches nodes that match all of the given patterns. This is mostly useful for na
479
479
480
480
### `$Maybe<pattern>`
481
481
482
-
Matches either the given type annotation or no node in its place. For example `let $a: $Maybe<number>` will match `let foo: number` and `let foo` (with no type annotation), but not `let foo: string``let foo: string`.
482
+
Matches either the given type annotation or no node in its place. For example `let $a: $Maybe<number>` will match `let foo: number` and `let foo` (with no type annotation), but not `let foo: string``let foo: string`.
483
483
484
484
### `$Or<...>`
485
485
@@ -533,14 +533,14 @@ For example if you do `astx.find('foo($$args)').find('$a + $b')`, the second `fi
533
533
534
534
You can call `.find` as a method or tagged template literal:
0 commit comments