Commit e0efdac6 authored by Alberto Donizetti's avatar Alberto Donizetti Committed by Mikio Hara

net: fix typo in ParseCIDR doc

Fixes #19891

Change-Id: I2f2684dd5fbfcf93fca0f2c3caf678f44605687f
Reviewed-on: https://go-review.googlesource.com/40090Reviewed-by: default avatarMikio Hara <mikioh.mikioh@gmail.com>
Run-TryBot: Mikio Hara <mikioh.mikioh@gmail.com>
TryBot-Result: Gobot Gobot <gobot@golang.org>
parent 2acd3fa8
...@@ -662,7 +662,7 @@ func ParseIP(s string) IP { ...@@ -662,7 +662,7 @@ func ParseIP(s string) IP {
// It returns the IP address and the network implied by the IP and // It returns the IP address and the network implied by the IP and
// prefix length. // prefix length.
// For example, ParseCIDR("192.0.2.1/24") returns the IP address // For example, ParseCIDR("192.0.2.1/24") returns the IP address
// 198.0.2.1 and the network 198.0.2.0/24. // 192.0.2.1 and the network 192.0.2.0/24.
func ParseCIDR(s string) (IP, *IPNet, error) { func ParseCIDR(s string) (IP, *IPNet, error) {
i := byteIndex(s, '/') i := byteIndex(s, '/')
if i < 0 { if i < 0 {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment