From fa4edd091dc5a36e58ff0513ceb7bef2d19ebea0 Mon Sep 17 00:00:00 2001 From: Preston Van Loon Date: Sun, 23 Jun 2019 11:25:12 -0400 Subject: [PATCH] Update README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 7caa937..5fc8eb9 100644 --- a/README.md +++ b/README.md @@ -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: ```go -for worker_id := 0; worker_id < 10; worker_id++ { - instantiateThread(worker_id) +for workerID := 0; workerID < 10; workerID++ { + instantiateThread(workerID) } ```