From 9e0109dbba8fde7cdd6949831136999e3e7c1e09 Mon Sep 17 00:00:00 2001 From: Jason White <31048576+drunkenkismet@users.noreply.github.com> Date: Sun, 4 Nov 2018 07:05:18 -0500 Subject: [PATCH] Minor grammatical fix (#21399) --- guide/english/javascript/arithmetic-operation/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/guide/english/javascript/arithmetic-operation/index.md b/guide/english/javascript/arithmetic-operation/index.md index eba792cf22..0e8f22b134 100644 --- a/guide/english/javascript/arithmetic-operation/index.md +++ b/guide/english/javascript/arithmetic-operation/index.md @@ -1,7 +1,7 @@ --- title: Arithmetic Operation --- -JavaScript provides the user with five arithmetic operators: `+`, `-`, `*`, `/` and `%`. The operators are for addition, subtraction, multiplication, division and remainder respectively. +JavaScript provides five arithmetic operators: `+`, `-`, `*`, `/` and `%`. The operators are for addition, subtraction, multiplication, division and remainder, respectively. ## Addition