Skip to content

Commit 5e745ae

Browse files
committed
chore: update eslint-disable comments in examples
1 parent 917d1d9 commit 5e745ae

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

examples/read-print.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ const interpretRead: Interpreter<"read", "async"> = function* (effect) {
8080
};
8181

8282
// Interprets `print` effect as output to the console.
83-
// eslint-disable-next-line func-style, require-yield
83+
// eslint-disable-next-line func-style
8484
const interpretPrint: Interpreter<"print", never> = function* (effect) {
8585
// eslint-disable-next-line no-console
8686
console.log(effect.data.message);

0 commit comments

Comments
 (0)