Fix error in XML docs processing

#2724
This commit is contained in:
Wojtek Figat
2025-03-04 22:37:05 +01:00
parent 5ffa3eb837
commit 668511a727

View File

@@ -234,7 +234,9 @@ namespace FlaxEditor.Modules.SourceCodeEditing
{
if (methodGenericMap.TryGetValue(type.Name, out var methodIndex))
return "``" + methodIndex;
return "`" + typeGenericMap[type.Name];
if (typeGenericMap.TryGetValue(type.Name, out var typeKey))
return "`" + typeKey;
return "`";
}
if (type.HasElementType)
{