Fix tiny typo in CP.2

This commit is contained in:
d3fault
2016-04-12 21:08:25 -07:00
parent c495084297
commit 8382c216d7

View File

@@ -10229,7 +10229,7 @@ production software at this very moment. One very simple example:
int get_id() {
static int id = 1;
return i++;
return id++;
}
The increment here is an example of a data race. This can go wrong in many ways,