You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Please answer these questions before submitting your issue. Thanks!
What version of Go are you using (go version)? 1.7
What operating system and processor architecture are you using (go env)? NA
What did you do? NA
What did you expect to see?
The example code for the documentation/comment for runtime.KeepAlive has a typo. It should use the defined type "File", but the usage is mis-capitalized as "FILE".
BAD: p := &FILE{d}
GOOD: p := &File{d}
What did you see instead?
p := &FILE{d}
The affected file is: src/runtime/mfinal.go
The text was updated successfully, but these errors were encountered:
Please answer these questions before submitting your issue. Thanks!
What version of Go are you using (
go version
)? 1.7What operating system and processor architecture are you using (
go env
)? NAWhat did you do? NA
What did you expect to see?
The example code for the documentation/comment for runtime.KeepAlive has a typo. It should use the defined type "File", but the usage is mis-capitalized as "FILE".
BAD: p := &FILE{d}
GOOD: p := &File{d}
What did you see instead?
p := &FILE{d}
The affected file is: src/runtime/mfinal.go
The text was updated successfully, but these errors were encountered: