From ad64944648f35f8a071c2815cc4228e101a2ef52 Mon Sep 17 00:00:00 2001 From: Bob Sun Date: Tue, 14 Feb 2017 19:17:31 +0800 Subject: [PATCH] fix grammer mistakes --- pass/Controllers/GeneralSettingsTableViewController.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pass/Controllers/GeneralSettingsTableViewController.swift b/pass/Controllers/GeneralSettingsTableViewController.swift index 79a832f..dfac9bb 100644 --- a/pass/Controllers/GeneralSettingsTableViewController.swift +++ b/pass/Controllers/GeneralSettingsTableViewController.swift @@ -48,7 +48,7 @@ class GeneralSettingsTableViewController: BasicStaticTableViewController { func tapHideUnknownSwitchDetailButton(_ sender: Any?) { print("tap") - let alertMessage = "Only \"key: value\" format in additional fields is supported. Unsupported fields will be given an \"unkown\" key. Turn on this switch to hide unsupported fields." + let alertMessage = "Only \"key: value\" format in additional fields is supported. Unsupported fields will be given \"unkown\" keys. Turn on this switch to hide unsupported fields." let alert = UIAlertController(title: "Hide Unknown Fields", message: alertMessage, preferredStyle: UIAlertControllerStyle.alert) alert.addAction(UIAlertAction(title: "OK", style: UIAlertActionStyle.default, handler: nil)) self.present(alert, animated: true, completion: nil)