diff options
author | 2023-04-29 18:16:57 -0700 | |
---|---|---|
committer | 2023-04-29 18:16:57 -0700 | |
commit | 9a929ff8738cf1c747af6d0a42f8ebab076e90d7 (patch) | |
tree | f1a96fee5958ae431fd077631cf6e242362aa981 | |
parent | 3b6fb374977791188c75bb082e3e380cb985821a (diff) | |
download | bun-9a929ff8738cf1c747af6d0a42f8ebab076e90d7.tar.gz bun-9a929ff8738cf1c747af6d0a42f8ebab076e90d7.tar.zst bun-9a929ff8738cf1c747af6d0a42f8ebab076e90d7.zip |
Update bun.zig
-rw-r--r-- | src/bun.zig | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/bun.zig b/src/bun.zig index 256b96688..aacd88540 100644 --- a/src/bun.zig +++ b/src/bun.zig @@ -59,6 +59,8 @@ pub const fmt = struct { text = text ++ "\"" ++ name ++ "\""; } else if (Separator == .dash) { text = text ++ "\n- " ++ name; + } else { + @compileError("Unknown separator type: must be .dash or .list"); } } break :brk text; |