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 {