Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/atomic.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ type foo struct {
running int32 // atomic
}

func (f* foo) start() {
func (f *foo) start() {
if atomic.SwapInt32(&f.running, 1) == 1 {
// already running…
return
Expand Down
2 changes: 1 addition & 1 deletion style.md
Original file line number Diff line number Diff line change
Expand Up @@ -1263,7 +1263,7 @@ type foo struct {
running int32 // atomic
}

func (f* foo) start() {
func (f *foo) start() {
if atomic.SwapInt32(&f.running, 1) == 1 {
// already running…
return
Expand Down
Loading