From 2abdbb5113a2cbae51a1572743cdb348a504dca3 Mon Sep 17 00:00:00 2001 From: Wolfgang Bumiller Date: Thu, 19 Dec 2019 12:01:36 +0100 Subject: [PATCH] add a top level doc comment to fs submodule Signed-off-by: Wolfgang Bumiller --- proxmox-tools/src/fs.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/proxmox-tools/src/fs.rs b/proxmox-tools/src/fs.rs index 6661c952..eacf0733 100644 --- a/proxmox-tools/src/fs.rs +++ b/proxmox-tools/src/fs.rs @@ -1,3 +1,5 @@ +//! File related utilities such as `replace_file`. + use std::ffi::CStr; use std::fs::File; use std::io::{BufRead, BufReader, Write};