From de304ad15a446b03f9aeabff3e4609e72a291040 Mon Sep 17 00:00:00 2001 From: Josef Pihrt Date: Fri, 11 Oct 2024 19:09:36 +0200 Subject: [PATCH 1/2] update --- src/Documentation/DocumentationWriter.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Documentation/DocumentationWriter.cs b/src/Documentation/DocumentationWriter.cs index 0c99d9ced5..cb46e37d01 100644 --- a/src/Documentation/DocumentationWriter.cs +++ b/src/Documentation/DocumentationWriter.cs @@ -1423,11 +1423,11 @@ internal void WriteTable( if (symbol.Kind == SymbolKind.Parameter) { - GetXmlDocumentation(symbol.ContainingSymbol)?.GetElement(WellKnownXmlTags.Param, "name", symbol.Name)?.WriteContentTo(this); + GetXmlDocumentation(symbol.ContainingSymbol)?.GetElement(WellKnownXmlTags.Param, "name", symbol.Name)?.WriteContentTo(this, inlineOnly: true); } else if (symbol.Kind == SymbolKind.TypeParameter) { - GetXmlDocumentation(symbol.ContainingSymbol)?.GetElement(WellKnownXmlTags.TypeParam, "name", symbol.Name)?.WriteContentTo(this); + GetXmlDocumentation(symbol.ContainingSymbol)?.GetElement(WellKnownXmlTags.TypeParam, "name", symbol.Name)?.WriteContentTo(this, inlineOnly: true); } else { From ad3ad92ef76c2fdb053efb25d658cce7cc977772 Mon Sep 17 00:00:00 2001 From: Josef Pihrt Date: Fri, 11 Oct 2024 19:12:26 +0200 Subject: [PATCH 2/2] update --- ChangeLog.md | 1 + 1 file changed, 1 insertion(+) diff --git a/ChangeLog.md b/ChangeLog.md index 79cc37da6b..fd342a447b 100644 --- a/ChangeLog.md +++ b/ChangeLog.md @@ -13,6 +13,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Fix analyzer [RCS1223](https://josefpihrt.github.io/docs/roslynator/analyzers/RCS1223) ([PR](https://github.com/dotnet/roslynator/pull/1552)) - Fix analyzer [RCS1140](https://josefpihrt.github.io/docs/roslynator/analyzers/RCS1140) ([PR](https://github.com/dotnet/roslynator/pull/1554)) - [CLI] Improve removing of unused symbols ([PR](https://github.com/dotnet/roslynator/pull/1550)) +- [CLI] Fix command `generate-doc` ([PR](https://github.com/dotnet/roslynator/pull/1559)) ## [4.12.7] - 2024-10-01