@@ -18,7 +18,7 @@ public class Stage
1818 private readonly List < Event > _events = [ ] ;
1919
2020 /// <summary>
21- /// Returns or sets the description of the main act.
21+ /// Gets or sets the description of the main act.
2222 /// This property provides a convenient way to access or modify the description of the Main Act directly.
2323 /// </summary>
2424 public string Description
@@ -28,7 +28,7 @@ public string Description
2828 }
2929
3030 /// <summary>
31- /// Returns or sets the controls of the main act.
31+ /// Gets or sets the controls of the main act.
3232 /// This property allows access to the controls in the Main Act or assigns a new control to it.
3333 /// </summary>
3434 public IEnumerable < IControl > Controls
@@ -38,7 +38,7 @@ public IEnumerable<IControl> Controls
3838 }
3939
4040 /// <summary>
41- /// Returns or sets the primary control of the main act.
41+ /// Gets or sets the primary control of the main act.
4242 /// This property allows access to the first control in the main act or assigns a new control to it.
4343 /// </summary>
4444 public IControl Control
@@ -48,7 +48,7 @@ public IControl Control
4848 }
4949
5050 /// <summary>
51- /// Returns or sets the dark mode controls of the main act.
51+ /// Gets or sets the dark mode controls of the main act.
5252 /// This property allows access to the controls in the main act or assigns a new control to it.
5353 /// </summary>
5454 public IEnumerable < IControl > DarkControls
@@ -58,7 +58,7 @@ public IEnumerable<IControl> DarkControls
5858 }
5959
6060 /// <summary>
61- /// Returns or sets the example code associated with the main act.
61+ /// Gets or sets the example code associated with the main act.
6262 /// This property allows for the retrieval or assignment of the code snippet
6363 /// that represents the Main Act's functionality or behavior.
6464 /// </summary>
@@ -69,22 +69,22 @@ public string Code
6969 }
7070
7171 /// <summary>
72- /// Returns the collection of property acts associated with the stage.
72+ /// Gets the collection of property acts associated with the stage.
7373 /// </summary>
7474 public IEnumerable < Act > PropertyActs => _propertyActs ;
7575
7676 /// <summary>
77- /// Returns the collection of item acts associated with the stage.
77+ /// Gets the collection of item acts associated with the stage.
7878 /// </summary>
7979 public IEnumerable < Act > ItemActs => _itemActs ;
8080
8181 /// <summary>
82- /// Returns the collection of item acts associated with the stage.
82+ /// Gets the collection of item acts associated with the stage.
8383 /// </summary>
8484 public IEnumerable < Act > ItemPropertyActs => _itemPropertyActs ;
8585
8686 /// <summary>
87- /// Returns the collection of events associated with the stage.
87+ /// Gets the collection of events associated with the stage.
8888 /// </summary>
8989 public IEnumerable < Event > Events => _events ;
9090
0 commit comments