From e86f606132a9ddbbb1c5d9a56b4fb48ed2610b83 Mon Sep 17 00:00:00 2001 From: timrayle Date: Fri, 18 Jan 2019 15:39:36 -0800 Subject: [PATCH] removed redundant sentence fragment (#30793) --- guide/english/swift/functions/index.md | 1 - 1 file changed, 1 deletion(-) diff --git a/guide/english/swift/functions/index.md b/guide/english/swift/functions/index.md index 053de0f44b..76e3b9d349 100644 --- a/guide/english/swift/functions/index.md +++ b/guide/english/swift/functions/index.md @@ -52,7 +52,6 @@ In the above program, the nested function addGreetingAndPrint() is being called The statement outputMessageByGreeting("Jack") calls the outer function. And the statement addGreetingAndPrint() inside the outer function calls the method which outputs Hello! Jack in the console. Example 2: Nested function with parameters and return values -Nested functions can contain functions with parameters and return values. ```Swift func operate(with symbol:String) -> (Int, Int) -> Int {