mirror of
https://github.com/nspcc-dev/neo-go.git
synced 2024-11-27 03:58:06 +00:00
a9b9c9226d
Fixes things like: * exported type/method/function X should have comment or be unexported * comment on exported type/method/function X should be of the form "X ..." (with optional leading article) Refs. #213.
9 lines
135 B
Go
9 lines
135 B
Go
package bar
|
|
|
|
// Bar is something used for testing purposes (TODO: move somewhere?)
|
|
type Bar struct {
|
|
X int
|
|
Y int
|
|
Z string
|
|
B bool
|
|
}
|