From 998012ebe36d5c791dfcaa0b53a35dd4fa9fbc73 Mon Sep 17 00:00:00 2001 From: Richard Feldman Date: Sat, 9 Aug 2025 15:21:58 -0400 Subject: [PATCH] fix lints --- src/fs/mod.zig | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/fs/mod.zig b/src/fs/mod.zig index 6f03d3f032..531973b3af 100644 --- a/src/fs/mod.zig +++ b/src/fs/mod.zig @@ -1 +1,6 @@ +//! Filesystem abstraction for the Roc compiler. +//! +//! This module provides a filesystem interface that allows for easy testing +//! and mocking of file operations throughout the compiler. + pub const Filesystem = @import("Filesystem.zig");