From b6d5834ed7e339625024fedee4f9b589751be766 Mon Sep 17 00:00:00 2001 From: Jay Date: Sat, 17 Aug 2024 17:18:09 +0800 Subject: [PATCH] make clippy happy (#81) fix incorrect markdown indentation Signed-off-by: Jay --- src/lib.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/lib.rs b/src/lib.rs index 8f702a9..2c5305b 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -654,8 +654,8 @@ pub fn eval) -> R>(name: &str, f: F) -> Option { /// times the action can be triggered. The supported values of `task` are: /// /// - `off`, the fail point will do nothing. -/// - `return(arg)`, return early when the fail point is triggered. `arg` is passed to `$e` ( -/// defined via the `fail_point!` macro) as a string. +/// - `return(arg)`, return early when the fail point is triggered. `arg` is passed to `$e` +/// (defined via the `fail_point!` macro) as a string. /// - `sleep(milliseconds)`, sleep for the specified time. /// - `panic(msg)`, panic with the message. /// - `print(msg)`, log the message, using the `log` crate, at the `info` level.