diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/SMAPI.Web/Controllers/LogParserController.cs | 2 | ||||
-rw-r--r-- | src/SMAPI.Web/Views/LogParser/Index.cshtml | 8 |
2 files changed, 5 insertions, 5 deletions
diff --git a/src/SMAPI.Web/Controllers/LogParserController.cs b/src/SMAPI.Web/Controllers/LogParserController.cs index 2a071b6c..f7f19cd8 100644 --- a/src/SMAPI.Web/Controllers/LogParserController.cs +++ b/src/SMAPI.Web/Controllers/LogParserController.cs @@ -110,7 +110,7 @@ namespace StardewModdingAPI.Web.Controllers return response; } - /// <summary>Construct an instance.</summary> + /// <summary>Build a log parser model.</summary> /// <param name="pasteID">The paste ID.</param> /// <param name="uploadError">An error which occurred while uploading the log to Pastebin.</param> private LogParserModel GetModel(string pasteID, string uploadError = null) diff --git a/src/SMAPI.Web/Views/LogParser/Index.cshtml b/src/SMAPI.Web/Views/LogParser/Index.cshtml index 9a06d85a..f98ffdf9 100644 --- a/src/SMAPI.Web/Views/LogParser/Index.cshtml +++ b/src/SMAPI.Web/Views/LogParser/Index.cshtml @@ -76,7 +76,7 @@ else if (Model.ParsedLog?.IsValid == true) </li> } </ul> - <div data-os="android"> + <div data-os="@Platform.Android"> On Android: <ol> <li>Open a file app (like My Files or MT Manager).</li> @@ -85,7 +85,7 @@ else if (Model.ParsedLog?.IsValid == true) <li>The log file is <code>SMAPI-crash.txt</code> if it exists, otherwise <code>SMAPI-latest.txt</code>.</li> </ol> </div> - <div data-os="linux"> + <div data-os="@Platform.Linux"> On Linux: <ol> <li>Open the Files app.</li> @@ -95,7 +95,7 @@ else if (Model.ParsedLog?.IsValid == true) <li>The log file is <code>SMAPI-crash.txt</code> if it exists, otherwise <code>SMAPI-latest.txt</code>.</li> </ol> </div> - <div data-os="mac"> + <div data-os="@Platform.Mac"> On Mac: <ol> <li>Open the Finder app.</li> @@ -104,7 +104,7 @@ else if (Model.ParsedLog?.IsValid == true) <li>The log file is <code>SMAPI-crash.txt</code> if it exists, otherwise <code>SMAPI-latest.txt</code>.</li> </ol> </div> - <div data-os="windows"> + <div data-os="@Platform.Windows"> On Windows: <ol> <li>Press the <code>Windows</code> and <code>R</code> buttons at the same time.</li> |