Skip to content

Commit

Permalink
Amend punctuation
Browse files Browse the repository at this point in the history
The framework suppliers the terminating full stop.

This is questionable but we shall go with it.
  • Loading branch information
richardbuckle committed Sep 15, 2018
1 parent 4ec98a3 commit 334e299
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion MissionMonitor/MissionExpiredEvent.cs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ namespace EddiMissionMonitor
public class MissionExpiredEvent : Event
{
public const string NAME = "Mission expired";
public const string DESCRIPTION = "Triggered when a mission has expired.";
public const string DESCRIPTION = "Triggered when a mission has expired";
public const string SAMPLE = null;

public static Dictionary<string, string> VARIABLES = new Dictionary<string, string>();
Expand Down
2 changes: 1 addition & 1 deletion MissionMonitor/MissionWarningEvent.cs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ namespace EddiMissionMonitor
public class MissionWarningEvent : Event
{
public const string NAME = "Mission warning";
public const string DESCRIPTION = "Triggered when a mission is about to expire, based on a set threshold.";
public const string DESCRIPTION = "Triggered when a mission is about to expire, based on a set threshold";
public const string SAMPLE = null;

public static Dictionary<string, string> VARIABLES = new Dictionary<string, string>();
Expand Down
2 changes: 1 addition & 1 deletion MissionMonitor/MissionsRouteEvent.cs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ namespace EddiMissionMonitor
public class MissionsRouteEvent : Event
{
public const string NAME = "Missions route";
public const string DESCRIPTION = "Triggered when a missions route has been generated or updated.";
public const string DESCRIPTION = "Triggered when a missions route has been generated or updated";
public const string SAMPLE = null;

public static Dictionary<string, string> VARIABLES = new Dictionary<string, string>();
Expand Down

0 comments on commit 334e299

Please sign in to comment.