From 2a6e87a6e9aae902cbcd5f870982d99e3da6cb2f Mon Sep 17 00:00:00 2001 From: Peter Roche <46547072+paroche@users.noreply.github.com> Date: Mon, 30 Mar 2020 18:25:04 -0600 Subject: [PATCH] Change 'brackets' to 'parentheses' Again, in American English, and programming, "brackets" usually means "square brackets". "Parentheses" is unambiguous. --- 1-js/04-object-basics/04-object-methods/3-why-this/solution.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/1-js/04-object-basics/04-object-methods/3-why-this/solution.md b/1-js/04-object-basics/04-object-methods/3-why-this/solution.md index 89bc0d72..31ea4ff8 100644 --- a/1-js/04-object-basics/04-object-methods/3-why-this/solution.md +++ b/1-js/04-object-basics/04-object-methods/3-why-this/solution.md @@ -3,7 +3,7 @@ Here's the explanations. 1. That's a regular object method call. -2. The same, brackets do not change the order of operations here, the dot is first anyway. +2. The same, parentheses do not change the order of operations here, the dot is first anyway. 3. Here we have a more complex call `(expression).method()`. The call works as if it were split into two lines: