Skip to content

Commit

Permalink
Clarified name of hibernation mode
Browse files Browse the repository at this point in the history
  • Loading branch information
akorb committed Jul 6, 2017
1 parent 17678a8 commit 51657b2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion SteamShutdown/Modes/Mode.cs
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,6 @@ public override string ToString()
return Name;
}

public static Mode[] GetAllModes => new Mode[] { new ShutdownMode(), new SleepMode() };
public static Mode[] GetAllModes => new Mode[] { new ShutdownMode(), new HibernationMode() };
}
}
4 changes: 2 additions & 2 deletions SteamShutdown/Modes/SleepMode.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@

namespace SteamShutdown.Modes
{
public class SleepMode : Mode
public class HibernationMode : Mode
{
public override string Name { get; protected set; } = "Sleep";
public override string Name { get; protected set; } = "Hibernate";

public override void Execute()
{
Expand Down

0 comments on commit 51657b2

Please sign in to comment.