diff options
author | danvolchek <volchek2@illinois.edu> | 2019-03-09 18:38:06 -0600 |
---|---|---|
committer | Jesse Plamondon-Willard <Pathoschild@users.noreply.github.com> | 2019-03-10 01:42:27 -0500 |
commit | f836caec3391d1f2e583ee1df6fcaafd284c796d (patch) | |
tree | 9a0657231e20f1c4270d0645b2f50c1f3002cce4 /src/SMAPI.Web/Framework/LogParsing/Models | |
parent | 6cd7e11c1020c40f223dee70a7dd7b2c66296918 (diff) | |
download | SMAPI-f836caec3391d1f2e583ee1df6fcaafd284c796d.tar.gz SMAPI-f836caec3391d1f2e583ee1df6fcaafd284c796d.tar.bz2 SMAPI-f836caec3391d1f2e583ee1df6fcaafd284c796d.zip |
fix typos and update release notes
Diffstat (limited to 'src/SMAPI.Web/Framework/LogParsing/Models')
-rw-r--r-- | src/SMAPI.Web/Framework/LogParsing/Models/LogMessage.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/SMAPI.Web/Framework/LogParsing/Models/LogMessage.cs b/src/SMAPI.Web/Framework/LogParsing/Models/LogMessage.cs index ecca0b5b..f7c99d02 100644 --- a/src/SMAPI.Web/Framework/LogParsing/Models/LogMessage.cs +++ b/src/SMAPI.Web/Framework/LogParsing/Models/LogMessage.cs @@ -21,10 +21,10 @@ namespace StardewModdingAPI.Web.Framework.LogParsing.Models /// <summary>The number of times this message was repeated consecutively.</summary> public int Repeated { get; set; } - /// <summary>The section that this log message belongs too.</summary> + /// <summary>The section that this log message belongs to.</summary> public LogSection? Section { get; set; } - /// <summary>Whether this message is the first one of it's section.</summary> + /// <summary>Whether this message is the first one of its section.</summary> public bool IsStartOfSection { get; set; } } } |