From b49794693e86f4b73d769900cdefcc052cf8bc44 Mon Sep 17 00:00:00 2001 From: timrayle Date: Fri, 18 Jan 2019 15:38:42 -0800 Subject: [PATCH] clarified wording (#30790) --- guide/english/swift/functions/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/guide/english/swift/functions/index.md b/guide/english/swift/functions/index.md index 950de7f07c..053de0f44b 100644 --- a/guide/english/swift/functions/index.md +++ b/guide/english/swift/functions/index.md @@ -16,7 +16,7 @@ In this example, the function sayHello takes in a string name and prints out the ## Function Parameters -Functions do not require any input parameters or return types. However this require the parentheses after naming the functions. +Functions do not require any input parameters or return types. However parentheses are required after the function name. ```Swift func helloSteve() { print("Hello, Steve.")