Skip to content

Commit

Permalink
Fix message on the attribute obsolete in NodeObjectTypeExtensions.
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelstaib committed Oct 16, 2020
2 parents 8ceda1a + 6d355dc commit 548b964
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -27,12 +27,12 @@ public static class NodeObjectTypeExtensions
return new NodeDescriptor<T>(descriptor);
}

[Obsolete("Use ImplementNode.")]
[Obsolete("Use ImplementsNode.")]
public static INodeDescriptor AsNode(
this IObjectTypeDescriptor descriptor) =>
ImplementsNode(descriptor);

[Obsolete("Use ImplementNode.")]
[Obsolete("Use ImplementsNode.")]
public static INodeDescriptor<T> AsNode<T>(
this IObjectTypeDescriptor<T> descriptor) =>
ImplementsNode<T>(descriptor);
Expand Down

0 comments on commit 548b964

Please sign in to comment.