diff --git a/guide/english/swift/functions/index.md b/guide/english/swift/functions/index.md index 76e3b9d349..a6786308a6 100644 --- a/guide/english/swift/functions/index.md +++ b/guide/english/swift/functions/index.md @@ -79,7 +79,7 @@ In the above program, - The outer function is operate(), with return value of type Function (Int,Int) -> Int. and the inner (nested) functions are add() and subtract(). - - The nested function add() and subtract() in a way are being used outside of the enclosing function operate(). This is possible because the outer function returns one of these functions. + - The nested functions add() and subtract() in a way are being used outside of the enclosing function operate(). This is possible because the outer function returns one of these functions. We've used the inner function outside the enclosing function operate() as operation(2, 3). The program internally calls add(2, 3) which outputs 5 in the console.