From 3cbeb1d3fc3264730cfdf22049b4b94589fed997 Mon Sep 17 00:00:00 2001 From: Christine Dodrill Date: Wed, 17 Jun 2020 09:39:38 -0400 Subject: [PATCH] Update vlang-update-2020-06-17.markdown --- blog/vlang-update-2020-06-17.markdown | 2 ++ 1 file changed, 2 insertions(+) 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`: ```