From 19d9a055490ff01d57b99afcd0a4b8b4e2600fa1 Mon Sep 17 00:00:00 2001 From: Jason Ish Date: Tue, 16 Nov 2021 19:34:11 -0600 Subject: [PATCH] dhcp: fix url in comment rustdoc was complaining about the format of the URL in a comment while trying to generate documentation. Convert the comment to a non-rustdoc comment for now to satisfy rustdoc. (cherry picked from commit eb6cc6293717e10f881edd6713fb8dc6ef78d3b7) --- rust/src/dhcp/dhcp.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rust/src/dhcp/dhcp.rs b/rust/src/dhcp/dhcp.rs index 442ccecd71..540c79976f 100644 --- a/rust/src/dhcp/dhcp.rs +++ b/rust/src/dhcp/dhcp.rs @@ -57,8 +57,8 @@ pub const DHCP_TYPE_NAK: u8 = 6; pub const DHCP_TYPE_RELEASE: u8 = 7; pub const DHCP_TYPE_INFORM: u8 = 8; -/// DHCP parameter types. -/// https://www.iana.org/assignments/bootp-dhcp-parameters/bootp-dhcp-parameters.txt +// DHCP parameter types. +// https://www.iana.org/assignments/bootp-dhcp-parameters/bootp-dhcp-parameters.txt pub const DHCP_PARAM_SUBNET_MASK: u8 = 1; pub const DHCP_PARAM_ROUTER: u8 = 3; pub const DHCP_PARAM_DNS_SERVER: u8 = 6; -- 2.47.2