From 2e41e4a76a9bdafe75bd209b9b7031d7b974636b Mon Sep 17 00:00:00 2001 From: Niall Lewin Date: Tue, 26 Jul 2022 09:53:01 +0100 Subject: [PATCH 1/3] Capitalized "general" Took me a couple readings to understand the sentence --- src/Unit-1/lesson4/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Unit-1/lesson4/README.md b/src/Unit-1/lesson4/README.md index e88d0c224..fde5bdc76 100644 --- a/src/Unit-1/lesson4/README.md +++ b/src/Unit-1/lesson4/README.md @@ -23,7 +23,7 @@ What's the pattern? Take a lot of work. Break it down recursively until it is ea ### Hierarchies enable resilient systems A hierarchy allows for different levels of risk and specialization to exist that could not otherwise. -Think of how an army works. An army has a general setting strategy and overseeing everything, but she is usually not going to be on the front line of the battle where there is the most risk. However, she has wide leverage and guides everything. At the same time, there are lower-ranking soldiers who are on the front lines, doing risky operations and carrying out the orders that they receive. +Think of how an army works. An army has a General setting strategy and overseeing everything, but she is usually not going to be on the front line of the battle where there is the most risk. However, she has wide leverage and guides everything. At the same time, there are lower-ranking soldiers who are on the front lines, doing risky operations and carrying out the orders that they receive. This is exactly how an actor system operates. @@ -78,7 +78,7 @@ This is where the party starts! And this is where you'll be spending all your ti The `/user` actor may also be referred to as "The Guardian Actor". But from a user perspective, `/user` is the root of your actor system and is usually just called the "root actor." -> Generally, "root actor" refers to the `/user` actor. +> `ly, "root actor" refers to the `/user` actor. As a user, you don't really need to worry too much about the Guardians. We just have to make sure that we use supervision properly under `/user` so that no exception can bubble up to the Guardians and crash the whole system. From 9d64b477e86e37366bff3173d7f221712c4998fc Mon Sep 17 00:00:00 2001 From: Niall Lewin Date: Tue, 26 Jul 2022 09:56:53 +0100 Subject: [PATCH 2/3] Fixed my previous typo --- src/Unit-1/lesson4/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Unit-1/lesson4/README.md b/src/Unit-1/lesson4/README.md index fde5bdc76..db8b1ff8a 100644 --- a/src/Unit-1/lesson4/README.md +++ b/src/Unit-1/lesson4/README.md @@ -78,7 +78,7 @@ This is where the party starts! And this is where you'll be spending all your ti The `/user` actor may also be referred to as "The Guardian Actor". But from a user perspective, `/user` is the root of your actor system and is usually just called the "root actor." -> `ly, "root actor" refers to the `/user` actor. +> `Generally, "root actor" refers to the `/user` actor. As a user, you don't really need to worry too much about the Guardians. We just have to make sure that we use supervision properly under `/user` so that no exception can bubble up to the Guardians and crash the whole system. From c46574a07e4ac998d99729e10ba00686c827baf9 Mon Sep 17 00:00:00 2001 From: Niall Lewin Date: Tue, 26 Jul 2022 16:57:44 +0100 Subject: [PATCH 3/3] Another typo (how many things can go wrong capitalizing a single letter?) --- src/Unit-1/lesson4/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Unit-1/lesson4/README.md b/src/Unit-1/lesson4/README.md index db8b1ff8a..e01c48ab9 100644 --- a/src/Unit-1/lesson4/README.md +++ b/src/Unit-1/lesson4/README.md @@ -78,7 +78,7 @@ This is where the party starts! And this is where you'll be spending all your ti The `/user` actor may also be referred to as "The Guardian Actor". But from a user perspective, `/user` is the root of your actor system and is usually just called the "root actor." -> `Generally, "root actor" refers to the `/user` actor. +> Generally, "root actor" refers to the `/user` actor. As a user, you don't really need to worry too much about the Guardians. We just have to make sure that we use supervision properly under `/user` so that no exception can bubble up to the Guardians and crash the whole system.