summaryrefslogtreecommitdiff
path: root/src/input/command.zig
diff options
context:
space:
mode:
authorMitchell Hashimoto <m@mitchellh.com>2025-04-21 10:50:34 -0700
committerMitchell Hashimoto <m@mitchellh.com>2025-04-21 10:54:23 -0700
commita732bb272d4c0da8d9210314a3d8993aeea5cb50 (patch)
tree9dd2bb5c62199cf782ed932ebfae5550a326bcce /src/input/command.zig
parente33eed0216b49ba4ee8a2d4eacdbca9bada67417 (diff)
fix CI
Diffstat (limited to 'src/input/command.zig')
-rw-r--r--src/input/command.zig2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/input/command.zig b/src/input/command.zig
index 017a14a18..a36232d48 100644
--- a/src/input/command.zig
+++ b/src/input/command.zig
@@ -2,7 +2,7 @@ const std = @import("std");
const builtin = @import("builtin");
const assert = std.debug.assert;
const Allocator = std.mem.Allocator;
-const Action = @import("binding.zig").Action;
+const Action = @import("Binding.zig").Action;
/// A command is a named binding action that can be executed from
/// something like a command palette.