api-doc-tools icon indicating copy to clipboard operation
api-doc-tools copied to clipboard

ref/out parameters aren't properly linked

Open mattleibow opened this issue 8 years ago • 0 comments

This is the member:

float MeasureText(String, ref SKRect);
MeasureText(String, ref SKRect) : Single

in this section: https://developer.xamarin.com/api/type/SkiaSharp.SKPaint/#Public_Methods

This is the mdoc:

<Parameter Name="bounds" Type="SkiaSharp.SKRect&amp;" RefType="ref" />

in this file: https://github.com/mono/SkiaSharp/blob/master/docs/en/SkiaSharp/SKPaint.xml#L1068-L1096

And this is the generated link:

https://developer.xamarin.com/api/member/SkiaSharp.SKPaint.MeasureText/p/System.String/SkiaSharp.SKRect@/

Note the @. If I change it to a &:

https://developer.xamarin.com/api/member/SkiaSharp.SKPaint.MeasureText/p/System.String/SkiaSharp.SKRect&/

Then it works.

mattleibow avatar Mar 23 '17 18:03 mattleibow