From 78e7c5efb89e66a13b9a10b49b48a734c86dc276 Mon Sep 17 00:00:00 2001 From: jarvis Date: Sat, 25 Apr 2020 09:58:28 -0400 Subject: [PATCH] Do not use "rule of thumb" This is extremely minor, but "the rule of thumb" meant that a man could beat his wife and children with a stick roughly the diameter of his thumb. We can easily express the idea without this specific wording. --- .../02-reactivity/04-updating-arrays-and-objects/text.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/site/content/tutorial/02-reactivity/04-updating-arrays-and-objects/text.md b/site/content/tutorial/02-reactivity/04-updating-arrays-and-objects/text.md index 82e4c91d35..96eb154963 100644 --- a/site/content/tutorial/02-reactivity/04-updating-arrays-and-objects/text.md +++ b/site/content/tutorial/02-reactivity/04-updating-arrays-and-objects/text.md @@ -31,11 +31,11 @@ function addNumber() { } ``` -A simple rule of thumb: the name of the updated variable must appear on the left hand side of the assignment. For example this... +A simple rule: the name of the updated variable must appear on the left hand side of the assignment. For example this... ```js const foo = obj.foo; foo.bar = 'baz'; ``` -...won't update references to `obj.foo.bar`, unless you follow it up with `obj = obj`. \ No newline at end of file +...won't update references to `obj.foo.bar`, unless you follow it up with `obj = obj`.