From 7831caf1e7c7129e62d038664028e9359e1fdb37 Mon Sep 17 00:00:00 2001 From: stevenhorsman Date: Mon, 3 Feb 2025 17:26:12 +0000 Subject: [PATCH] libs/safe-path: Fix doc formatting Clippy fails with ``` error: doc list item missing indentation ``` so indent further to avoid this. --- src/libs/safe-path/src/lib.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/libs/safe-path/src/lib.rs b/src/libs/safe-path/src/lib.rs index 6b853a3c87..96e57f5904 100644 --- a/src/libs/safe-path/src/lib.rs +++ b/src/libs/safe-path/src/lib.rs @@ -49,9 +49,9 @@ //! //! The work is inspired by: //! - [`filepath-securejoin`](https://github.com/cyphar/filepath-securejoin): secure_join() written -//! in Go. +//! in Go. //! - [CVE-2021-30465](https://github.com/advisories/GHSA-c3xm-pvg7-gh7r): symlink related TOCTOU -//! flaw in `runC`. +//! flaw in `runC`. #![deny(missing_docs)]