From 71c3edbbce2b442312e12eb7fe14822536812006 Mon Sep 17 00:00:00 2001 From: burkehavendesign Date: Wed, 5 Apr 2017 11:47:48 -0400 Subject: [PATCH] Update article.md "substraction" on line 143 should be changed to "subtraction" --- 1-js/02-first-steps/07-operators/article.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/1-js/02-first-steps/07-operators/article.md b/1-js/02-first-steps/07-operators/article.md index 6f5684e6..6a615944 100644 --- a/1-js/02-first-steps/07-operators/article.md +++ b/1-js/02-first-steps/07-operators/article.md @@ -140,7 +140,7 @@ An extract from the [precedence table](https://developer.mozilla.org/en/JavaScri | 14 | multiplication | `*` | | 14 | division | `/` | | 13 | addition (binary) | `+` | -| 13 | substraction | `-` | +| 13 | subtraction | `-` | | ... | ... | ... | | 3 | assignment | `=` | | ... | ... | ... |