From be9a3ac76cf7f6d693c90296480f459e4c8fc159 Mon Sep 17 00:00:00 2001 From: Meghan Westvig <36444576+MEWestvig@users.noreply.github.com> Date: Tue, 18 Dec 2018 00:56:19 +0200 Subject: [PATCH] Fixing spelling errors (#27200) --- guide/english/c/functions/index.md | 1 - 1 file changed, 1 deletion(-) diff --git a/guide/english/c/functions/index.md b/guide/english/c/functions/index.md index 61c98db111..acaefde18d 100644 --- a/guide/english/c/functions/index.md +++ b/guide/english/c/functions/index.md @@ -89,7 +89,6 @@ Their are two types of parameters: 1. Parameter Written In Function Definition is Called “Formal Parameter”. 2. Parameter Written In Function Call is Called “Actual Parameter”. They are also known as arguments. They are passed to the function definition and a copy is created in the form of formal parameters. - ## A more complex example That one was a single line function. You'll see them when there's a pretty simple operation that needs to be performed over and over, or an operation that ends up being one long line. By making it a function, the code ends up being more readable and manageable.