Description
There is a typo in the file infra/conf/transport_sockopt.go at line 13.
The struct field name is misspelled as:
Syetem string `json:"system"`
Should be corrected to:
System string `json:"system"`
File Location
- File:
infra/conf/transport_sockopt.go
- Line: 13
- Commit: 5ca6f4b
Details
The field name contains a typo: "Syetem" instead of "System". This should be fixed to match the JSON tag and follow Go naming conventions.
Description
There is a typo in the file
infra/conf/transport_sockopt.goat line 13.The struct field name is misspelled as:
Should be corrected to:
File Location
infra/conf/transport_sockopt.goDetails
The field name contains a typo: "Syetem" instead of "System". This should be fixed to match the JSON tag and follow Go naming conventions.