Remove the period from the end of LP0002 so we don't end up with double periods. (#342)

LP0002 is always populated from an exception message, which are supposed to have periods on the end. So most of the time we were getting double periods, which looks bad.
This commit is contained in:
Simeon 2020-08-28 15:23:33 -07:00 коммит произвёл GitHub
Родитель e504e6c982
Коммит a5519e86cb
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
2 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -1,5 +1,5 @@
[comment]: # (name:FatalError)
[comment]: # (text:Fatal error: {message}.)
[comment]: # (text:Fatal error: {message})
# Lottie-Windows Warning LP0002

Просмотреть файл

@ -35,7 +35,7 @@ namespace Microsoft.Toolkit.Uwp.UI.Lottie.LottieData.Serialization
// LP0001 has been deprecated.
// Was: Failed to parse JSON. {message}.
internal void FatalError(string message) => Report("LP0002", $"Fatal error: {message}.");
internal void FatalError(string message) => Report("LP0002", $"Fatal error: {message}");
internal void AssetType(string type) => Report("LP0005", $"Unsupported asset type: {type}.");