From 12a3bb3e82868a38eceb5845874ab00bac160a3b Mon Sep 17 00:00:00 2001 From: Ashley Date: Fri, 6 Oct 2023 14:36:57 -0400 Subject: [PATCH] Update advanced_configuration.md Removed extra comma from end of line so the Swift code is valid --- .../mobile_and_tv_monitoring/ios/advanced_configuration.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/en/real_user_monitoring/mobile_and_tv_monitoring/ios/advanced_configuration.md b/content/en/real_user_monitoring/mobile_and_tv_monitoring/ios/advanced_configuration.md index e00782a2216c9..6b2b3fa10ebb1 100644 --- a/content/en/real_user_monitoring/mobile_and_tv_monitoring/ios/advanced_configuration.md +++ b/content/en/real_user_monitoring/mobile_and_tv_monitoring/ios/advanced_configuration.md @@ -122,7 +122,7 @@ let rum = RUMMonitor.shared() @IBAction func didTapDownloadResourceButton(_ sender: UIButton) { rum.addAction( type: .tap, - name: sender.currentTitle ?? "", + name: sender.currentTitle ?? "" ) } ```