1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2025-01-17 14:57:44 -05:00

Merge pull request #1933 from felixonmars/patch-2

Correct a typo in port.go
This commit is contained in:
Kslr 2019-10-09 08:10:10 +08:00 committed by GitHub
commit 501b704719
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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)
} }