diff --git a/proxmox-file-restore/src/main.rs b/proxmox-file-restore/src/main.rs index 59ccbe52..572e2d18 100644 --- a/proxmox-file-restore/src/main.rs +++ b/proxmox-file-restore/src/main.rs @@ -663,7 +663,7 @@ fn main() { /// Returns a runtime dir owned by the current user. /// Note that XDG_RUNTIME_DIR is not always available, especially for non-login users like -/// "www-data", so we use a custom one in /run/proxmox-backup/ instead. +/// "www-data", so we use a custom one in `/run/proxmox-backup/` instead. pub fn get_user_run_dir() -> Result { let uid = nix::unistd::Uid::current(); let mut path: std::path::PathBuf = pbs_buildcfg::PROXMOX_BACKUP_RUN_DIR.into();