Skip to content

Commit

Permalink
Resolved some typos
Browse files Browse the repository at this point in the history
  • Loading branch information
QuantumNightmare committed Feb 11, 2016
1 parent 8a0d4c8 commit bd49c91
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Mindscape.Raygun4Net.WebApi/readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ Providing a custom RaygunClient to the automatic exception handlers
===================================================================

Sometimes when setting up Raygun to send exceptions automatically, you may need to provide a custom RaygunWebApiClient instance in order to use some of the optional feature described below.
To do this, use the static RaygunWebApiClient method overload that takes a function. Within this function, return a new (or previously created) RaygunWebApiClient instance.
To do this, use the static RaygunWebApiClient.Attach method overload that takes a function. Within this function, return a new (or previously created) RaygunWebApiClient instance.
In this function you can setup any additional options on the RaygunWebApiClient instance that you need - more information about each feature is described below.

RaygunWebApiClient.Attach(config, () => {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ public static RaygunEnvironmentMessage Build()
}
catch (Exception ex)
{
Debug.WriteLine("Error retieving screen info: {0}", ex.Message);
Debug.WriteLine("Error retrieving screen info: {0}", ex.Message);
}

try
Expand All @@ -45,7 +45,7 @@ public static RaygunEnvironmentMessage Build()
}
catch (Exception ex)
{
Debug.WriteLine("Error retieving time and locale: {0}", ex.Message);
Debug.WriteLine("Error retrieving time and locale: {0}", ex.Message);
}

try
Expand All @@ -57,7 +57,7 @@ public static RaygunEnvironmentMessage Build()
}
catch (Exception ex)
{
Debug.WriteLine("Error retieving device info: {0}", ex.Message);
Debug.WriteLine("Error retrieving device info: {0}", ex.Message);
}

return message;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ public IRaygunMessageBuilder SetVersion(string version)
}
catch (Exception ex)
{
Debug.WriteLine("Error retieving package version {0}", ex.Message);
Debug.WriteLine("Error retrieving package version {0}", ex.Message);
}
}

Expand Down
2 changes: 1 addition & 1 deletion Mindscape.Raygun4Net.Xamarin.iOS/RaygunMessageBuilder.cs
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ public IRaygunMessageBuilder SetVersion(string version)
}
catch (Exception ex)
{
Trace.WriteLine("Error retieving bundle version {0}", ex.Message);
Trace.WriteLine("Error retrieving bundle version {0}", ex.Message);
}
}

Expand Down

0 comments on commit bd49c91

Please sign in to comment.