Skip to content

Commit 0053d83

Browse files
committed
fixup! fix bad rename-all
1 parent 8b3927b commit 0053d83

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/patterns/src/patterns/patternMatchers.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1777,7 +1777,7 @@ const makePatternKit = () => {
17771777
'match:recordOf': matchRecordOfHelper,
17781778
'match:setOf': matchSetOfHelper,
17791779
'match:bagOf': matchBagOfHelper,
1780-
'M.containerHas': matchContainerHasHelper,
1780+
'match:containerHas': matchContainerHasHelper,
17811781
'match:mapOf': matchMapOfHelper,
17821782
'match:splitArray': matchSplitArrayHelper,
17831783
'match:splitRecord': matchSplitRecordHelper,
@@ -1933,7 +1933,7 @@ const makePatternKit = () => {
19331933
bagOf: (keyPatt = M.any(), countPatt = M.any(), limits = undefined) =>
19341934
makeLimitsMatcher('match:bagOf', [keyPatt, countPatt, limits]),
19351935
containerHas: (elementPatt = M.any(), countPatt = 1n, limits = undefined) =>
1936-
makeLimitsMatcher('M.containerHas', [elementPatt, countPatt, limits]),
1936+
makeLimitsMatcher('match:containerHas', [elementPatt, countPatt, limits]),
19371937
mapOf: (keyPatt = M.any(), valuePatt = M.any(), limits = undefined) =>
19381938
makeLimitsMatcher('match:mapOf', [keyPatt, valuePatt, limits]),
19391939
splitArray: (base, optional = undefined, rest = undefined) =>

0 commit comments

Comments
 (0)