aboutsummaryrefslogtreecommitdiff
path: root/src/io.zig
diff options
context:
space:
mode:
Diffstat (limited to 'src/io.zig')
-rw-r--r--src/io.zig2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/io.zig b/src/io.zig
index f33437f..54abcfc 100644
--- a/src/io.zig
+++ b/src/io.zig
@@ -1,6 +1,6 @@
const std = @import("std");
-pub fn Context(readerType: anytype, writerType: anytype) type {
+pub fn Context(comptime readerType: anytype, comptime writerType: anytype) type {
return struct {
reader: readerType,
writer: writerType,