From d03c81ebfba19a98a8dcc99451db60d129b43784 Mon Sep 17 00:00:00 2001 From: An Xiao Date: Tue, 20 Aug 2019 00:18:58 +0800 Subject: [PATCH] Update quotation marks in package net --- src/net/ip.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/net/ip.go b/src/net/ip.go index 1a1d0e7dba4..7a554869336 100644 --- a/src/net/ip.go +++ b/src/net/ip.go @@ -65,8 +65,8 @@ func IPv4Mask(a, b, c, d byte) IPMask { return p } -// CIDRMask returns an IPMask consisting of `ones' 1 bits -// followed by 0s up to a total length of `bits' bits. +// CIDRMask returns an IPMask consisting of 'ones' 1 bits +// followed by 0s up to a total length of 'bits' bits. // For a mask of this form, CIDRMask is the inverse of IPMask.Size. func CIDRMask(ones, bits int) IPMask { if bits != 8*IPv4len && bits != 8*IPv6len {