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
Hello, looks like there is a typo in docs – in Go memory model document the word serialize used instead of synchronize in 2 places: first line and second
The text was updated successfully, but these errors were encountered:
It is correct as written. Serializing memory access is well-defined, and means that accesses occur in a sequence rather than simultaneously. It is difference from synchronization, which can mean exactly the opposite in practice. Think of the phrase 'synchronize your watches': you're guaranteeing simultaneity then.
Hello, looks like there is a typo in docs – in Go memory model document the word
serialize
used instead ofsynchronize
in 2 places: first line and secondThe text was updated successfully, but these errors were encountered: