We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a170ce8 commit 77db90dCopy full SHA for 77db90d
1 file changed
Src/IronPython/Runtime/Types/DocBuilder.cs
@@ -733,11 +733,12 @@ private static string XmlToString(XPathNodeIterator iter) {
733
switch (xr.Name) {
734
case "see":
735
if (xr.MoveToFirstAttribute() && xr.ReadAttributeValue()) {
736
+ int prefixlen = xr.Value.IndexOf(':') + 1;
737
int arity = xr.Value.IndexOf(ReflectionUtils.GenericArityDelimiter);
738
if (arity != -1)
- text.Append(xr.Value, 2, arity - 2);
739
+ text.Append(xr.Value, prefixlen, arity - prefixlen);
740
else
- text.Append(xr.Value, 2, xr.Value.Length - 2);
741
+ text.Append(xr.Value, prefixlen, xr.Value.Length - prefixlen);
742
}
743
break;
744
case "paramref":
0 commit comments