diff options
author | Jesse Plamondon-Willard <Pathoschild@users.noreply.github.com> | 2019-12-26 00:13:19 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-12-26 00:13:19 -0500 |
commit | 9ea25993569d7295c02db7b7c1cd2f9669b5fba0 (patch) | |
tree | 7307195abdf4b0dafd0331fa0bbedc41f3f911e3 /src | |
parent | eee65ad0b6561928b689507be45c81794319005c (diff) | |
parent | 63f2eacb47dce250d1a247532ca08933f1a30b6c (diff) | |
download | SMAPI-9ea25993569d7295c02db7b7c1cd2f9669b5fba0.tar.gz SMAPI-9ea25993569d7295c02db7b7c1cd2f9669b5fba0.tar.bz2 SMAPI-9ea25993569d7295c02db7b7c1cd2f9669b5fba0.zip |
Merge pull request #683 from danvolchek/fixtypo
[JSON Validator] Change 'log' to 'JSON file' on the JSON validator page
Diffstat (limited to 'src')
-rw-r--r-- | src/SMAPI.Web/Views/JsonValidator/Index.cshtml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/SMAPI.Web/Views/JsonValidator/Index.cshtml b/src/SMAPI.Web/Views/JsonValidator/Index.cshtml index f3696578..a00c8387 100644 --- a/src/SMAPI.Web/Views/JsonValidator/Index.cshtml +++ b/src/SMAPI.Web/Views/JsonValidator/Index.cshtml @@ -75,7 +75,7 @@ else if (!isEditView && Model.PasteID != null) <div class="save-metadata" v-pre> @if (Model.Expiry != null) { - <text>This log will expire in @((DateTime.UtcNow - Model.Expiry.Value).Humanize()). </text> + <text>This JSON file will expire in @((DateTime.UtcNow - Model.Expiry.Value).Humanize()). </text> } <!--@Model.UploadWarning--> </div> |