To remove a redundant dot
This commit is contained in:
Xiaogang 2024-02-28 13:07:04 +08:00 коммит произвёл GitHub
Родитель cfa925f8b2
Коммит b9d6f405cc
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: B5690EEEBB952194
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -308,7 +308,7 @@ namespace Microsoft.Rest.ClientRuntime.PowerShell
IsMandatory = ParameterAttribute.Mandatory;
var complexParameterName = ParameterName.ToUpperInvariant();
var complexMessage = $"{Environment.NewLine}.";
var complexMessage = $"{Environment.NewLine}";
var description = ParameterAttribute.HelpMessage.NullIfEmpty() ?? HelpInfo.Description.NullIfEmpty() ?? InfoAttribute?.Description.NullIfEmpty() ?? String.Empty;
// Remove the complex type message as it will be reinserted if this is a complex type
description = description.NormalizeNewLines().Replace(complexMessage, String.Empty).Replace(complexMessage.ToPsSingleLine(), String.Empty);