From 4983e0c2be57879843470693b5ea437466c46916 Mon Sep 17 00:00:00 2001 From: katopz Date: Mon, 7 Nov 2022 11:08:59 +0700 Subject: [PATCH] fix: unnecessary space --- practices/doc-comments/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/practices/doc-comments/src/lib.rs b/practices/doc-comments/src/lib.rs index 645b77f..638aef3 100644 --- a/practices/doc-comments/src/lib.rs +++ b/practices/doc-comments/src/lib.rs @@ -42,7 +42,7 @@ pub fn add_three(x: i32) -> Option { } mod a { - /// Add four to the given value and return a [`Option`] type + /// Add four to the given value and return a [`Option`] type /// [`crate::MySpecialFormatter`] pub fn add_four(x: i32) -> Option { Some(x + 4)