Skip to content

Commit 449063d

Browse files
committed
Fix some comments
1 parent 0a5041a commit 449063d

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

src/CSSUniversalMenuAPI/IMenu.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ void Exit()
5454
}
5555

5656
/// <summary>
57-
/// Attempt to get an extension for the current menu. <br/>
57+
/// Attempt to get an extension for the current menu.<br/>
5858
///
5959
/// This is preferred over direct casting, as it allows menus to be wrapped,
6060
/// and switching the implementation at runtime for a single player.

src/CSSUniversalMenuAPI/IMenuItem.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ public interface IMenuItem
3030
object? Context { get; set; }
3131

3232
/// <summary>
33-
/// Attempt to get an extension for the current menu. <br/>
33+
/// Attempt to get an extension for the current menu item.<br/>
3434
///
3535
/// This is preferred over direct casting, as it allows menus to be wrapped,
3636
/// and switching the implementation at runtime for a single player.

src/CSSUniversalMenuAPI/UniversalMenu.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,8 @@ namespace CSSUniversalMenuAPI;
1111

1212
/// <summary>
1313
/// Because menus may want access to other drivers, and PluginCapability&lt;&gt; is not expressive enough,
14-
/// this helper class is included with the interface to aid in constructing and
14+
/// this helper class is included with the interface to aid in more complex scenarios, such as a switcher
15+
/// that allows a player to use their preferred menu.
1516
/// </summary>
1617
public static class UniversalMenu
1718
{

0 commit comments

Comments
 (0)