@@ -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