Skip to content

Commit

Permalink
ios example: add missing single quote to NSLog (#146)
Browse files Browse the repository at this point in the history
Signed-off-by: adamawolf <[email protected]>

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 <[email protected]>
  • Loading branch information
Adam Wolf authored and jpsim committed Nov 28, 2022
1 parent 242ce8d commit 577f824
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mobile/examples/swift/hello_world/ViewController.swift
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 577f824

Please sign in to comment.