From 1c0ef813765e80da87558c7c6bc9bebdbf67cb9d Mon Sep 17 00:00:00 2001 From: Ian Jackson Date: Thu, 12 May 2022 01:50:31 +0100 Subject: [PATCH] shapelib: Fix an improperly quoted item in a doc comment Without the quotes, rustdoc wants this to be a hyperlink. Signed-off-by: Ian Jackson --- src/shapelib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/shapelib.rs b/src/shapelib.rs index 7daa48e9..65e0242f 100644 --- a/src/shapelib.rs +++ b/src/shapelib.rs @@ -721,7 +721,7 @@ pub trait OutlineDefn: Debug + Sync + Send + 'static { /// Success or failure must not depend on `svg_sz` /// /// Called to *check* the group configuration before load, but - /// with a dummy svg_gz of [1,1]. That must correctly predict + /// with a dummy svg_gz of `[1,1]`. That must correctly predict /// success with other sizes. fn load(&self, size: PosC) -> Outline { RectShape { xy: size }.into() -- 2.30.2