From e199bcba43174403a578f7a1e92e0a95076495c8 Mon Sep 17 00:00:00 2001 From: Isaac Freund Date: Sat, 2 May 2020 23:11:56 +0200 Subject: Rename files contatining top level structs This respects the naming convention of snake_case namespaces and TitleCase types. --- src/render.zig | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'src/render.zig') diff --git a/src/render.zig b/src/render.zig index 4b22011..ac37e42 100644 --- a/src/render.zig +++ b/src/render.zig @@ -19,11 +19,11 @@ const std = @import("std"); const c = @import("c.zig"); -const Box = @import("box.zig"); -const LayerSurface = @import("layer_surface.zig"); -const Output = @import("output.zig"); -const Server = @import("server.zig"); -const View = @import("view.zig"); +const Box = @import("Box.zig"); +const LayerSurface = @import("LayerSurface.zig"); +const Output = @import("Output.zig"); +const Server = @import("Server.zig"); +const View = @import("View.zig"); const ViewStack = @import("view_stack.zig").ViewStack; pub fn renderOutput(output: *Output) void { -- cgit v1.2.3