diff options
author | Jesse Plamondon-Willard <Pathoschild@users.noreply.github.com> | 2018-12-27 12:39:10 -0500 |
---|---|---|
committer | Jesse Plamondon-Willard <Pathoschild@users.noreply.github.com> | 2018-12-27 12:39:10 -0500 |
commit | c4a82418ac8b09a6965052f5c9173928457fba52 (patch) | |
tree | a17f53fb9e9a3c54089b1d28a4c04f94d2ec0b80 /src/SMAPI.Tests | |
parent | 51e65fc8a090996b0bb2f0f4697376135b233654 (diff) | |
download | SMAPI-c4a82418ac8b09a6965052f5c9173928457fba52.tar.gz SMAPI-c4a82418ac8b09a6965052f5c9173928457fba52.tar.bz2 SMAPI-c4a82418ac8b09a6965052f5c9173928457fba52.zip |
tweak comment header convention
Diffstat (limited to 'src/SMAPI.Tests')
-rw-r--r-- | src/SMAPI.Tests/Sample.cs | 6 | ||||
-rw-r--r-- | src/SMAPI.Tests/Utilities/SDateTests.cs | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/src/SMAPI.Tests/Sample.cs b/src/SMAPI.Tests/Sample.cs index 99835d92..6cd27707 100644 --- a/src/SMAPI.Tests/Sample.cs +++ b/src/SMAPI.Tests/Sample.cs @@ -1,4 +1,4 @@ -using System; +using System; namespace StardewModdingAPI.Tests { @@ -6,14 +6,14 @@ namespace StardewModdingAPI.Tests internal static class Sample { /********* - ** Properties + ** Fields *********/ /// <summary>A random number generator.</summary> private static readonly Random Random = new Random(); /********* - ** Properties + ** Accessors *********/ /// <summary>Get a sample string.</summary> public static string String() diff --git a/src/SMAPI.Tests/Utilities/SDateTests.cs b/src/SMAPI.Tests/Utilities/SDateTests.cs index b89d8857..1f31168e 100644 --- a/src/SMAPI.Tests/Utilities/SDateTests.cs +++ b/src/SMAPI.Tests/Utilities/SDateTests.cs @@ -13,7 +13,7 @@ namespace StardewModdingAPI.Tests.Utilities internal class SDateTests { /********* - ** Properties + ** Fields *********/ /// <summary>All valid seasons.</summary> private static readonly string[] ValidSeasons = { "spring", "summer", "fall", "winter" }; |