From 028c0233775043ea914067c2778b70c826154150 Mon Sep 17 00:00:00 2001 From: Ian Jackson Date: Sun, 15 May 2022 01:34:14 +0100 Subject: [PATCH] dice: Unwrap surround_path We're making changes here and it's confusing. Make this more prominent. Signed-off-by: Ian Jackson --- src/dice.rs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/dice.rs b/src/dice.rs index cae6969f..59ec135a 100644 --- a/src/dice.rs +++ b/src/dice.rs @@ -313,7 +313,9 @@ impl OutlineTrait for Die { // apply that to surround_outline's outline_path, rather than its // surround_path. #[throws(IE)] - fn surround_path(&self) -> Html { self.surround_outline.outline_path(1.0)? } + fn surround_path(&self) -> Html { + self.surround_outline.outline_path(1.0)? + } delegate! { to self.surround_outline { -- 2.30.2