Skip to content

Commit

Permalink
Fix minor typos in RootCauseLocalizationType.cs (#5983)
Browse files Browse the repository at this point in the history
  • Loading branch information
CallumMcLoughlin committed Oct 26, 2021
1 parent 17f795c commit cc5e639
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Microsoft.ML.TimeSeries/RootCauseLocalizationType.cs
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ public sealed class RootCauseLocalizationInput
public DateTime AnomalyTimestamp { get; set; }

/// <summary>
/// Point with the anomaly dimension must exist in the slice list at the anomaly timestamp, or the libary will not calculate the root cause.
/// Point with the anomaly dimension must exist in the slice list at the anomaly timestamp, or the library will not calculate the root cause.
/// </summary>
public Dictionary<string, Object> AnomalyDimension { get; set; }

Expand Down Expand Up @@ -126,7 +126,7 @@ public sealed class RootCauseItem : IEquatable<RootCauseItem>
///</summary>
public double Score;
/// <summary>
/// Path is a list of the dimension key that the libary selected for you. In this root cause localization library, for one time call for the library, the path will be obtained and the length of path list will always be 1. Different RootCauseItem obtained from one library call will have the same path as it is the best dimension selected for the input.
/// Path is a list of the dimension key that the library selected for you. In this root cause localization library, for one time call for the library, the path will be obtained and the length of path list will always be 1. Different RootCauseItem obtained from one library call will have the same path as it is the best dimension selected for the input.
/// </summary>
public List<string> Path;
/// <summary>
Expand Down

0 comments on commit cc5e639

Please sign in to comment.