diff options
author | 2023-09-12 04:03:45 +1000 | |
---|---|---|
committer | 2023-09-11 11:03:45 -0700 | |
commit | 350403663e5ece8b1d09adce3a3594f8e05bf8f1 (patch) | |
tree | 837c7a45f28de1d65b159f2c541f1fadbf4af112 | |
parent | 895f3824b5ff2e0e50deef400a8bc33f1a0c77e3 (diff) | |
download | bun-350403663e5ece8b1d09adce3a3594f8e05bf8f1.tar.gz bun-350403663e5ece8b1d09adce3a3594f8e05bf8f1.tar.zst bun-350403663e5ece8b1d09adce3a3594f8e05bf8f1.zip |
Fix error message typo in js_ast.zig (#4937)
-rw-r--r-- | src/js_ast.zig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/js_ast.zig b/src/js_ast.zig index 2e1daad1d..7811541f4 100644 --- a/src/js_ast.zig +++ b/src/js_ast.zig @@ -425,7 +425,7 @@ pub const Binding = struct { ); }, else => { - Global.panic("Interanl error", .{}); + Global.panic("Internal error", .{}); }, } } |