Skip to content

Commit

Permalink
fix(patterns): more merge repair
Browse files Browse the repository at this point in the history
  • Loading branch information
erights committed Dec 21, 2023
1 parent 947e166 commit e24eced
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/patterns/src/patterns/patternMatchers.js
Original file line number Diff line number Diff line change
Expand Up @@ -1178,7 +1178,7 @@ const makePatternKit = () => {
return (
checkKind(specimen, 'copyBytes', check) &&
// eslint-disable-next-line @endo/restrict-comparison-operands
(/** @type {CopyBytes} */ (specimen).byteLength <= byteLengthLimit ||
(/** @type {import('./types.js').CopyBytes} */ (specimen).byteLength <= byteLengthLimit ||
check(
false,
X`bytes ${specimen} must not be bigger than ${byteLengthLimit}`,
Expand Down

0 comments on commit e24eced

Please sign in to comment.