mirror of https://github.com/v2ray/v2ray-core
Correct a typo in port.go
parent
e9f53059b1
commit
b94e3ced7a
|
@ -33,7 +33,7 @@ func PortFromString(s string) (Port, error) {
|
||||||
return PortFromInt(uint32(val))
|
return PortFromInt(uint32(val))
|
||||||
}
|
}
|
||||||
|
|
||||||
// Value return the correspoding uint16 value of a Port.
|
// Value return the corresponding uint16 value of a Port.
|
||||||
func (p Port) Value() uint16 {
|
func (p Port) Value() uint16 {
|
||||||
return uint16(p)
|
return uint16(p)
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue