From 577f824a9f4c54b37643080fd00b339c7101027c Mon Sep 17 00:00:00 2001 From: Adam Wolf Date: Tue, 18 Jun 2019 13:52:44 -0700 Subject: [PATCH] ios example: add missing single quote to NSLog (#146) Signed-off-by: adamawolf Description: noticed a missing single quote in the iOS example Risk Level: Low Testing: None Docs Changes: n/a Release Notes: n/a Signed-off-by: JP Simard --- mobile/examples/swift/hello_world/ViewController.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)