From 72b14b2fb3d281ebb047f2dfd0b8d0aee124b1d1 Mon Sep 17 00:00:00 2001 From: MarianKijewski <148276531+MarianKijewski@users.noreply.github.com> Date: Thu, 22 Jan 2026 14:20:52 +0100 Subject: [PATCH] Fix surname typo and spacing His name is Rob Pike, not Pyke. Source: https://en.wikipedia.org/wiki/Rob_Pike --- data/guides/concurrency-is-not-parallelism.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/data/guides/concurrency-is-not-parallelism.md b/data/guides/concurrency-is-not-parallelism.md index cb12aaa6..19cb47e3 100644 --- a/data/guides/concurrency-is-not-parallelism.md +++ b/data/guides/concurrency-is-not-parallelism.md @@ -15,7 +15,7 @@ tags: In system design, it is important to understand the difference between concurrency and parallelism. -As Rob Pyke(one of the creators of GoLang) stated:“ Concurrency is about **dealing with** lots of things at once. Parallelism is about **doing** lots of things at once." This distinction emphasizes that concurrency is more about the **design** of a program, while parallelism is about the **execution**. +As Rob Pike (one of the creators of GoLang) stated:“ Concurrency is about **dealing with** lots of things at once. Parallelism is about **doing** lots of things at once." This distinction emphasizes that concurrency is more about the **design** of a program, while parallelism is about the **execution**. Concurrency is about dealing with multiple things at once. It involves structuring a program to handle multiple tasks simultaneously, where the tasks can start, run, and complete in overlapping time periods, but not necessarily at the same instant.