From 4dab97d84e134678d97c3741a4a812175cd04313 Mon Sep 17 00:00:00 2001 From: Ilka Schulz Date: Thu, 29 Feb 2024 11:40:45 +0100 Subject: [PATCH] use <> brackets around hyperlinks in comments because GitHub actions complained --- rosenpass/src/config.rs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/rosenpass/src/config.rs b/rosenpass/src/config.rs index 338b9de..bdf96fe 100644 --- a/rosenpass/src/config.rs +++ b/rosenpass/src/config.rs @@ -4,8 +4,8 @@ //! [`Rosenpass`] which holds such a configuration. //! //! ## TODO -//! - support `~` in (https://github.com/rosenpass/rosenpass/issues/237) -//! - provide tooling to create config file from shell (https://github.com/rosenpass/rosenpass/issues/247) +//! - support `~` in +//! - provide tooling to create config file from shell use std::{ collections::HashSet, @@ -53,7 +53,7 @@ pub struct Rosenpass { } /// ## TODO -/// - replace this type with [`log::LevelFilter`], also see https://github.com/rosenpass/rosenpass/pull/246 +/// - replace this type with [`log::LevelFilter`], also see #[derive(Debug, PartialEq, Eq, Serialize, Deserialize)] pub enum Verbosity { Quiet, @@ -84,7 +84,7 @@ pub struct RosenpassPeer { /// ## TODO /// - documentation - /// - make this field only available on binary builds, not on library builds (https://github.com/rosenpass/rosenpass/issues/249) + /// - make this field only available on binary builds, not on library builds #[serde(flatten)] pub wg: Option, }