From 2e33b2bdff5990e9126bbd87e1584ce0827cd2c8 Mon Sep 17 00:00:00 2001 From: cyberhoward Date: Wed, 14 Aug 2024 17:05:56 +0200 Subject: [PATCH] rm comment --- packages/ownable/src/lib.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/packages/ownable/src/lib.rs b/packages/ownable/src/lib.rs index 1fab6ce..5f28aed 100644 --- a/packages/ownable/src/lib.rs +++ b/packages/ownable/src/lib.rs @@ -344,7 +344,6 @@ impl Ownership { } } -// This is a nice helper, maybe move to dedicated utils package? fn none_or(or: Option<&T>) -> String { or.map_or_else(|| "none".to_string(), |or| or.to_string()) }