Skip to content

Commit 230af2f

Browse files
committed
Added missing comments for public APIs
1 parent b95cda3 commit 230af2f

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/Microsoft.OpenApi/Services/OpenApiUrlTreeNode.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -341,7 +341,7 @@ private static string SanitizeMermaidNode(string token)
341341
public class MermaidNodeStyle
342342
{
343343
/// <summary>
344-
///
344+
/// Create a style that defines the color and shape of a diagram element
345345
/// </summary>
346346
/// <param name="color"></param>
347347
/// <param name="shape"></param>
@@ -352,18 +352,18 @@ internal MermaidNodeStyle(string color, MermaidNodeShape shape)
352352
}
353353

354354
/// <summary>
355-
///
355+
/// The CSS color name of the diagram element
356356
/// </summary>
357357
public string Color { get; }
358358

359359
/// <summary>
360-
///
360+
/// The shape of the diagram element
361361
/// </summary>
362362
public MermaidNodeShape Shape { get; }
363363
}
364364

365365
/// <summary>
366-
///
366+
/// Shapes supported by Mermaid diagrams
367367
/// </summary>
368368
public enum MermaidNodeShape
369369
{

0 commit comments

Comments
 (0)