From dfc7636d5d219be9f493cb2a1da903785f0ffafa Mon Sep 17 00:00:00 2001 From: SolomonOdunusi Date: Mon, 10 Oct 2022 06:26:18 +0100 Subject: [PATCH] edited doc on functions --- functions/declare.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/functions/declare.md b/functions/declare.md index 9756103b..2fc83aed 100644 --- a/functions/declare.md +++ b/functions/declare.md @@ -1,6 +1,6 @@ # Declaring Functions -Functions, like variables, must be declared. Let's declare a function `double` that accepts an **argument** called `x` and **returns** the double of x : +Functions are declared like variables. Let's declare a function `double` that accepts an **argument** called `x` and **returns** the double of x : ```javascript function double(x) {