Skip to content

Commit

Permalink
chore: update documentation
Browse files Browse the repository at this point in the history
Co-authored-by: Jens Steenmetz <[email protected]>
  • Loading branch information
JoenvandeVorle and JensSteenmetz authored Jun 20, 2024
1 parent aeaa7d2 commit 11b5539
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions Aplib.Core/Logging/LogNode.cs
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,11 @@ public class LogNode
/// </summary>
/// <param name="loggable">The loggable object of the node.</param>
/// <param name="depth">The depth at which this node resides.</param>
/// <param name="children">The children of the node. If omitted, an empty list will be used.</param>
/// <remarks> It is assumed the children have a correct depth set. </remarks>
/// <param name="children">
/// The children of the node.
/// It is assumed the children have a correct depth set.
/// If omitted, an empty list will be used.
/// </param>
public LogNode(ILoggable loggable, int depth, List<LogNode> children)
{
Loggable = loggable;
Expand Down

0 comments on commit 11b5539

Please sign in to comment.