From d230eed7f83173fa6acf805871a8453074f3de99 Mon Sep 17 00:00:00 2001 From: Daniel Thayer Date: Fri, 16 May 2014 16:05:03 -0500 Subject: [PATCH] Fix a doc build warning --- scripts/base/utils/addrs.bro | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/scripts/base/utils/addrs.bro b/scripts/base/utils/addrs.bro index 9ebd35bbb1..9e33e6d585 100644 --- a/scripts/base/utils/addrs.bro +++ b/scripts/base/utils/addrs.bro @@ -120,11 +120,11 @@ function addr_to_uri(a: addr): string return fmt("[%s]", a); } -## Given a string, extracts the hex digits and returns a MAC address in the -## format: 00:a0:32:d7:81:8f. If the string doesn't contain 12 or 16 hex digits, -## an empty string is returned. +## Given a string, extracts the hex digits and returns a MAC address in +## the format: 00:a0:32:d7:81:8f. If the string doesn't contain 12 or 16 hex +## digits, an empty string is returned. ## -## a: the string to normalize +## a: the string to normalize. ## ## Returns: a normalized MAC address, or an empty string in the case of an error. function normalize_mac(a: string): string