From a960147c5a3d2e79c19190081b56aebe5b5e417b Mon Sep 17 00:00:00 2001 From: fransposito <44411858+fransposito@users.noreply.github.com> Date: Mon, 4 Mar 2019 18:40:07 -0600 Subject: [PATCH] Grammar and Readability (#27602) * Grammar and Readability * fix: corrected some typos --- .../multiply-two-numbers-with-javascript/index.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/guide/english/javascript/multiply-two-numbers-with-javascript/index.md b/guide/english/javascript/multiply-two-numbers-with-javascript/index.md index 964a461fa8..2876892786 100644 --- a/guide/english/javascript/multiply-two-numbers-with-javascript/index.md +++ b/guide/english/javascript/multiply-two-numbers-with-javascript/index.md @@ -1,12 +1,12 @@ --- title: Multiply Two Numbers with JavaScript --- -JavaScript uses use the `*` symbol for multiplication. +JavaScript uses the `*` symbol for multiplication. Here is an example: var product = 8 * 10; -the 'product' would have the value '80' after this line. +The variable `product` would have a value of `80` after this declaration. -When making calculations it is possible to use parentheses to prioritise which numbers should be multiplied together. +When making calculations, it is possible to use parentheses to prioritise which numbers should be multiplied together.