Update README.md

This commit is contained in:
Preston Van Loon 2019-06-23 11:25:12 -04:00 committed by GitHub
parent bbf5a24a56
commit fa4edd091d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -85,8 +85,8 @@ for i := 0; i < 10; i++ {
Now we can understand why we are iterating and we can tell what we are doing, by reading the code. The worrying part about this comment is, that this probably should be necessary to express in prose. We can quite easily express this directly in our code instead: Now we can understand why we are iterating and we can tell what we are doing, by reading the code. The worrying part about this comment is, that this probably should be necessary to express in prose. We can quite easily express this directly in our code instead:
```go ```go
for worker_id := 0; worker_id < 10; worker_id++ { for workerID := 0; workerID < 10; workerID++ {
instantiateThread(worker_id) instantiateThread(workerID)
} }
``` ```