aboutsummaryrefslogtreecommitdiff
path: root/src/command/send_to_output.zig
diff options
context:
space:
mode:
authorIsaac Freund <ifreund@ifreund.xyz>2020-05-02 23:11:56 +0200
committerIsaac Freund <ifreund@ifreund.xyz>2020-05-02 23:11:56 +0200
commite199bcba43174403a578f7a1e92e0a95076495c8 (patch)
treeff84537bbf3ba93ad40ec465b41fa0125f78a9f4 /src/command/send_to_output.zig
parent8a9c2182eabadf6e50532b2b9a1044859587af82 (diff)
downloadriver-e199bcba43174403a578f7a1e92e0a95076495c8.tar.gz
river-e199bcba43174403a578f7a1e92e0a95076495c8.tar.xz
Rename files contatining top level structs
This respects the naming convention of snake_case namespaces and TitleCase types.
Diffstat (limited to 'src/command/send_to_output.zig')
-rw-r--r--src/command/send_to_output.zig4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/command/send_to_output.zig b/src/command/send_to_output.zig
index bece494..f0658ca 100644
--- a/src/command/send_to_output.zig
+++ b/src/command/send_to_output.zig
@@ -20,8 +20,8 @@ const std = @import("std");
const c = @import("../c.zig");
const Arg = @import("../command.zig").Arg;
-const Output = @import("../output.zig");
-const Seat = @import("../seat.zig");
+const Output = @import("../Output.zig");
+const Seat = @import("../Seat.zig");
/// Send the focused view to the the next or the previous output, depending on
/// the bool passed. Does nothing if there is only one output.