Skip to content

Commit

Permalink
Improved code
Browse files Browse the repository at this point in the history
  • Loading branch information
IgorMundstein committed Dec 24, 2023
1 parent 34ab548 commit d518b92
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion src/Command/RelayCommand.cs
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ public class RelayCommand : RelayCommand<object>
#region Constructors

/// <summary>
/// Initializes a new instance of the <see cref="RelayCommand"/> class.
/// Initializes a new instance of the <see cref="RelayCommand" /> class.
/// </summary>
/// <param name="execute">The execute.</param>
/// <param name="canExecute">The can execute.</param>
Expand Down
2 changes: 1 addition & 1 deletion src/Model/HotKey.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ namespace WinMemoryCleaner
public class HotKey
{
/// <summary>
/// Initializes a new instance of the <see cref="HotKey"/> class.
/// Initializes a new instance of the <see cref="HotKey" /> class.
/// </summary>
/// <param name="modifiers">The modifiers.</param>
/// <param name="key">The key.</param>
Expand Down
2 changes: 1 addition & 1 deletion src/Model/Language.cs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ namespace WinMemoryCleaner
public class Language
{
/// <summary>
/// Initializes a new instance of the <see cref="Language"/> class.
/// Initializes a new instance of the <see cref="Language" /> class.
/// </summary>
/// <param name="culture">The culture.</param>
/// <exception cref="ArgumentNullException">culture</exception>
Expand Down
4 changes: 2 additions & 2 deletions src/Model/Memory/Memory.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ namespace WinMemoryCleaner
public class Memory
{
/// <summary>
/// Initializes a new instance of the <see cref="Memory"/> class.
/// Initializes a new instance of the <see cref="Memory" /> class.
/// </summary>
public Memory()
{
Expand All @@ -17,7 +17,7 @@ public Memory()
}

/// <summary>
/// Initializes a new instance of the <see cref="Memory"/> class.
/// Initializes a new instance of the <see cref="Memory" /> class.
/// </summary>
/// <param name="memoryStatusEx">The memory status ex.</param>
public Memory(Structs.Windows.MemoryStatusEx memoryStatusEx)
Expand Down
2 changes: 1 addition & 1 deletion src/Model/Memory/MemorySize.cs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
public class MemorySize
{
/// <summary>
/// Initializes a new instance of the <see cref="MemorySize"/> class.
/// Initializes a new instance of the <see cref="MemorySize" /> class.
/// </summary>
/// <param name="bytes">The amount of memory, in bytes</param>
public MemorySize(ulong bytes)
Expand Down
2 changes: 1 addition & 1 deletion src/Service/HotKeyService.cs
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ public class HotKeyService : IHotKeyService
#region Constructors

/// <summary>
/// Initializes a new instance of the <see cref="HotKeyService"/> class.
/// Initializes a new instance of the <see cref="HotKeyService" /> class.
/// </summary>
public HotKeyService()
{
Expand Down
4 changes: 2 additions & 2 deletions src/View/Control/ContextMenuStripControl.cs
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ public sealed class ContextMenuStripControl : ContextMenuStrip
private static readonly Color _darkOver = ((SolidColorBrush)Application.Current.FindResource("DarkOver")).ToColor();

/// <summary>
/// Initializes a new instance of the <see cref="ContextMenuStripControl"/> class.
/// Initializes a new instance of the <see cref="ContextMenuStripControl" /> class.
/// </summary>
public ContextMenuStripControl()
{
Expand All @@ -43,7 +43,7 @@ public ContextMenuStripControl()
public class ToolStripRenderer : ToolStripProfessionalRenderer
{
/// <summary>
/// Initializes a new instance of the <see cref="ToolStripRenderer"/> class.
/// Initializes a new instance of the <see cref="ToolStripRenderer" /> class.
/// </summary>
public ToolStripRenderer()
: base(new ToolStripColorTable())
Expand Down

0 comments on commit d518b92

Please sign in to comment.