Quellcode durchsuchen

Correct a typo in port.go

Felix Yan vor 6 Jahren
Ursprung
Commit
b94e3ced7a
1 geänderte Dateien mit 1 neuen und 1 gelöschten Zeilen
  1. 1 1
      common/net/port.go

+ 1 - 1
common/net/port.go

@@ -33,7 +33,7 @@ func PortFromString(s string) (Port, error) {
 	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 {
 	return uint16(p)
 }