summaryrefslogtreecommitdiff
path: root/Example Apps
diff options
context:
space:
mode:
authorNicoleYarroch <nicole@livio.io>2019-08-12 15:17:52 -0400
committerNicoleYarroch <nicole@livio.io>2019-08-12 15:17:52 -0400
commit1cd9f24a49c6fb9a492ca489c33453278d5bb21b (patch)
tree1fd63f16b6abec4c842df52b2ee00feeddd90bdc /Example Apps
parenta68e905ef657a69a184fc87802027b04ad6cd9e6 (diff)
downloadsdl_ios-1cd9f24a49c6fb9a492ca489c33453278d5bb21b.tar.gz
Fixed header doc comment formatting
Diffstat (limited to 'Example Apps')
-rw-r--r--Example Apps/Example ObjC/AlertManager.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/Example Apps/Example ObjC/AlertManager.h b/Example Apps/Example ObjC/AlertManager.h
index c388f3441..10508261a 100644
--- a/Example Apps/Example ObjC/AlertManager.h
+++ b/Example Apps/Example ObjC/AlertManager.h
@@ -17,10 +17,10 @@ NS_ASSUME_NONNULL_BEGIN
/**
Creates an alert with up to two lines of text, an image, and a close button that will dismiss the alert when tapped.
- @param textField1 The first line of the message to display in the alert
- @param textField2 The second line of the message to display in the alert
- @param iconName An image to show in the alert.
- @return An SDLAlert object
+ @param textField1 The first line of the message to display in the alert
+ @param textField2 The second line of the message to display in the alert
+ @param iconName An image to show in the alert.
+ @return An SDLAlert object
*/
+ (SDLAlert *)alertWithMessageAndCloseButton:(NSString *)textField1 textField2:(nullable NSString *)textField2 iconName:(nullable NSString *)iconName;