From e6b7c5c8be4293b027cd139da0404e0ffc1c344d Mon Sep 17 00:00:00 2001 From: lorisabbinante Date: Sun, 23 Dec 2018 09:10:49 +0100 Subject: [PATCH] Fixed typo (#26255) --- guide/english/swift/hello-world/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/guide/english/swift/hello-world/index.md b/guide/english/swift/hello-world/index.md index 857bc2b201..162701d6ae 100644 --- a/guide/english/swift/hello-world/index.md +++ b/guide/english/swift/hello-world/index.md @@ -4,7 +4,7 @@ title: Hello World Swift ## Hello World -We only have to add the method `print("Hello World")` (from the library UIKit) to the function `viewDidLoad()` of the class `ViewController: +We only have to add the method `print("Hello World")` (from the library UIKit) to the function `viewDidLoad()` of the class `ViewController`: ```Swift import UIKit