File tree Expand file tree Collapse file tree
ApolloFederation/src/ApolloFederation/Types
Subscriptions.Nats/DependencyInjection Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -319,6 +319,8 @@ dotnet_diagnostic.RCS1214.severity = warning
319319dotnet_diagnostic.RCS1217.severity = warning
320320# Unused element in a documentation comment.
321321dotnet_diagnostic.RCS1228.severity = warning
322+ # Fix documentation comment tag.
323+ dotnet_diagnostic.RCS1247.severity = warning
322324# Unnecessary null-forgiving operator.
323325dotnet_diagnostic.RCS1249.severity = warning
324326# Remove unnecessary braces.
Original file line number Diff line number Diff line change 11namespace HotChocolate . ApolloFederation . Types ;
22
33/// <summary>
4- /// Scalar <code >Policy</code > representation.
4+ /// Scalar <c >Policy</c > representation.
55/// </summary>
66public readonly record struct Policy
77{
Original file line number Diff line number Diff line change 77namespace HotChocolate . ApolloFederation . Types ;
88
99/// <summary>
10- /// The <code >Policy</code > scalar representing an authorization policy. Serializes as a string.
10+ /// The <c >Policy</c > scalar representing an authorization policy. Serializes as a string.
1111/// </summary>
1212public sealed class PolicyType : ScalarType < Policy , StringValueNode >
1313{
Original file line number Diff line number Diff line change 11namespace HotChocolate . ApolloFederation . Types ;
22
33/// <summary>
4- /// Scalar <code >Scope</code > representation.
4+ /// Scalar <c >Scope</c > representation.
55/// </summary>
66public readonly record struct Scope
77{
Original file line number Diff line number Diff line change 77namespace HotChocolate . ApolloFederation . Types ;
88
99/// <summary>
10- /// The <code >Scope</code > scalar representing a JWT scope. Serializes as a string.
10+ /// The <c >Scope</c > scalar representing a JWT scope. Serializes as a string.
1111/// </summary>
1212public sealed class ScopeType : ScalarType < Scope , StringValueNode >
1313{
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ public static class NatsPubSubExtensions
1414{
1515 /// <summary>
1616 /// Adds support for using NATS as a subscription provider.
17- /// Ensure you have configured the NATS client using <code >AddNatsClient(...)</code >
17+ /// Ensure you have configured the NATS client using <c >AddNatsClient(...)</c >
1818 /// before calling this method.
1919 /// </summary>
2020 /// <param name="builder">
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ public struct MutationConventionOptions
1010 /// <summary>
1111 /// Specifies a name pattern for the input type name of a mutation.
1212 /// The pattern is specified like the following:
13- /// <code >"{MutationName}Input"</code >
13+ /// <c >"{MutationName}Input"</c >
1414 ///
1515 /// <code>
1616 /// type Mutation {
@@ -43,7 +43,7 @@ public struct MutationConventionOptions
4343 /// <summary>
4444 /// Specifies a name pattern for the payload type name of a mutation.
4545 /// The pattern is specified like the following:
46- /// <code >"{MutationName}Payload"</code >
46+ /// <c >"{MutationName}Payload"</c >
4747 ///
4848 /// <code>
4949 /// type Mutation {
@@ -61,7 +61,7 @@ public struct MutationConventionOptions
6161 /// <summary>
6262 /// Specifies a name pattern for the error union type name of a mutation.
6363 /// The pattern is specified like the following:
64- /// <code >"{MutationName}Error"</code >
64+ /// <c >"{MutationName}Error"</c >
6565 ///
6666 /// <code>
6767 /// type Mutation {
You can’t perform that action at this time.
0 commit comments