Skip to content

Commit

Permalink
xml docs
Browse files Browse the repository at this point in the history
  • Loading branch information
sdcondon committed Aug 5, 2023
1 parent 97ffe36 commit bdef14f
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -376,7 +376,7 @@ public interface IElementInfo
}

/// <summary>
/// Information about a function, for storage against a node of a <see cref="DiscriminationTree{TValue}"/>.
/// Information about a function, for storage against a node of a discrimination tree.
/// </summary>
/// <param name="Identifier">The identifier of the represented function.</param>
/// <param name="ArgumentCount">The number of arguments of the represented function.</param>
Expand All @@ -387,7 +387,7 @@ public sealed record FunctionInfo(object Identifier, int ArgumentCount) : IEleme
}

/// <summary>
/// Information about a constant, for storage against a node of a <see cref="DiscriminationTree{TValue}"/>.
/// Information about a constant, for storage against a node of a discrimination tree.
/// </summary>
/// <param name="Identifier">The identifier of the represented constant.</param>
public sealed record ConstantInfo(object Identifier) : IElementInfo
Expand All @@ -397,7 +397,7 @@ public sealed record ConstantInfo(object Identifier) : IElementInfo
}

/// <summary>
/// Information about a variable, for storage against a node of a <see cref="DiscriminationTree{TValue}"/>.
/// Information about a variable, for storage against a node of a discrimination tree.
/// </summary>
/// <param name="Ordinal">
/// The ordinal of the represented variable - that is, the index of its position in a list of variables that
Expand Down

0 comments on commit bdef14f

Please sign in to comment.