From 1fbdea4bd9e3e67f15a0425d4b5c021498b8c6a2 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 --- content/en/real_user_monitoring/ios/advanced_configuration.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/en/real_user_monitoring/ios/advanced_configuration.md b/content/en/real_user_monitoring/ios/advanced_configuration.md index 0e960be8ce76d..0793ce82eaa75 100644 --- a/content/en/real_user_monitoring/ios/advanced_configuration.md +++ b/content/en/real_user_monitoring/ios/advanced_configuration.md @@ -117,7 +117,7 @@ let rum = RUMMonitor.shared() @IBAction func didTapDownloadResourceButton(_ sender: UIButton) { rum.addAction( type: .tap, - name: sender.currentTitle ?? "", + name: sender.currentTitle ?? "" ) } ```