Skip to content

Commit 541cf9f

Browse files
author
Kate Osborn
committed
Correct spacing
1 parent 4d3323c commit 541cf9f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/developer/go-style-guide.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -413,7 +413,7 @@ FAVOR:
413413

414414
```go
415415
type Object struct{
416-
subobject SubObject
416+
subobject SubObject
417417
}
418418

419419
func New() Object {
@@ -427,7 +427,7 @@ DISFAVOR:
427427

428428
```go
429429
type Object struct{
430-
subobject *SubObject
430+
subobject *SubObject
431431
}
432432

433433
func New() *Object {

0 commit comments

Comments
 (0)