fix typos and update release notes

This commit is contained in:
danvolchek 2019-03-09 18:38:06 -06:00 committed by Jesse Plamondon-Willard
parent 6cd7e11c10
commit f836caec33
No known key found for this signature in database
GPG Key ID: 7D7C8097B62033CE
2 changed files with 8 additions and 2 deletions

View File

@ -1,4 +1,10 @@
# Release notes
## Upcoming release
These changes have not been released yet.
* For the web UI:
* The log parser now hides some messages by default, like the mod list.
## 2.11
Released 01 March 2019 for Stardew Valley 1.3.36.

View File

@ -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; }
}
}