diff --git a/mobile/examples/swift/hello_world/ViewController.swift b/mobile/examples/swift/hello_world/ViewController.swift index bba6f04023e0..3fa834e9ad2f 100644 --- a/mobile/examples/swift/hello_world/ViewController.swift +++ b/mobile/examples/swift/hello_world/ViewController.swift @@ -29,7 +29,7 @@ final class ViewController: UITableViewController { private func performRequest() { // Note that the request is sent to the envoy thread listening locally on port 9001. let request = URLRequest(url: kURL) - NSLog("Starting request to '\(kURL.path)") + NSLog("Starting request to '\(kURL.path)'") let task = URLSession.shared.dataTask(with: request) { [weak self] data, response, error in if let response = response as? HTTPURLResponse, response.statusCode == 200, let data = data { self?.handle(response: response, with: data)