diff --git a/Runtime/Interfaces/IBacktraceMetrics.cs b/Runtime/Interfaces/IBacktraceMetrics.cs
index fc743c80..baecf5ac 100644
--- a/Runtime/Interfaces/IBacktraceMetrics.cs
+++ b/Runtime/Interfaces/IBacktraceMetrics.cs
@@ -12,7 +12,7 @@ public interface IBacktraceMetrics : IScopeAttributeProvider
/// and custom unique events can be added. Typical values to add are UserID, SteamID and other attributes that uniquely
/// identify an user. This list is persistent, meaning that events will not be removed upon Send() (like for summed events).
/// For non-standard unique events, server side configuration needs to be done.
- /// Please refer to the online documentation.
+ /// Please refer to the online documentation.
///
//LinkedList UniqueEvents { get; }
@@ -49,14 +49,14 @@ public interface IBacktraceMetrics : IScopeAttributeProvider
/// Adds a summed event to the outgoing queue.
///
/// See .
- /// The name of the metric group to be incremented. This metric group must be configured on server side as well, please refer to the online documentation.
+ /// The name of the metric group to be incremented. This metric group must be configured on server side as well, please refer to the online documentation.
/// true if added successfully, otherwise false.
bool AddSummedEvent(string metricsGroupName);
///
/// Adds a summed event to the outgoing queue.
///
- /// The name of the metric group to be incremented. This metric group must be configured on server side as well, please refer to the online documentation.
+ /// The name of the metric group to be incremented. This metric group must be configured on server side as well, please refer to the online documentation.
/// Custom attributes to add. Will be merged with the default attributes, with attribute values provided here overriding any defaults.
/// true if added successfully, otherwise false.
bool AddSummedEvent(string metricsGroupName, IDictionary attributes);
diff --git a/Runtime/Services/BacktraceApi.cs b/Runtime/Services/BacktraceApi.cs
index 21575f8e..26da4c61 100644
--- a/Runtime/Services/BacktraceApi.cs
+++ b/Runtime/Services/BacktraceApi.cs
@@ -259,7 +259,7 @@ private void PrintLog(UnityWebRequest request)
Debug.LogWarning(string.Format("{0}{1}", string.Format("[Backtrace]::Reponse code: {0}, Response text: {1}",
request.responseCode,
request.error),
- "\n Please check provided url to Backtrace service or learn more from our integration guide: https://support.backtrace.io/hc/en-us/articles/360040515991-Unity-Integration-Guide"));
+ "\n Please check provided url to Backtrace service or learn more from our integration guide: https://docs.saucelabs.com/error-reporting/platform-integrations/unity/setup/"));
}
//private string GetParametrizedQuery(string serverUrl, IDictionary queryAttributes)