Skip to content

Commit a1c9369

Browse files
Fix cref for builder extensions (Azure#50398)
1 parent 7924bb6 commit a1c9369

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

eng/packages/http-client-csharp/generator/Azure.Generator/src/Providers/ClientBuilderExtensionsDefinition.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ protected override MethodProvider[] BuildMethods()
6363
tConfiguration);
6464
var methodName = $"Add{client.Name}";
6565
FormattableString methodDescription =
66-
$"Registers a <see cref=\"{client.Name}\"/> client with the specified <see cref=\"{Static(typeof(IAzureClientBuilder<,>))}\"/>.";
66+
$"Registers a <see cref=\"{client.Name}\"/> client with the specified <see cref=\"{typeof(IAzureClientBuilder<,>)}\"/>.";
6767
var methodModifiers = MethodSignatureModifiers.Public | MethodSignatureModifiers.Static |
6868
MethodSignatureModifiers.Extension;
6969
var methodReturnType = new CSharpType(typeof(IAzureClientBuilder<,>), client.Type,

0 commit comments

Comments
 (0)