diff --git a/blog/vlang-update-2020-06-17.markdown b/blog/vlang-update-2020-06-17.markdown index c49cf8f..0811cd7 100644 --- a/blog/vlang-update-2020-06-17.markdown +++ b/blog/vlang-update-2020-06-17.markdown @@ -198,6 +198,8 @@ A common problem that shows up when writing multi-threaded code are to do the same thing at the same time on the same block of memory. This leads to undefined behavior, which is bad because it can corrupt or crash programs. +[races]: https://en.wikipedia.org/wiki/Race_condition + As an example, consider this program `raceanint.v`: ```