File tree 2 files changed +6
-6
lines changed
2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -153,8 +153,8 @@ export const GraphQLDeprecatedDirective = new GraphQLDirective({
153
153
type : GraphQLString ,
154
154
description :
155
155
'Explains why this element was deprecated, usually also including a ' +
156
- 'suggestion for how to access supported similar data. Formatted ' +
157
- 'in [ Markdown](https://daringfireball.net/projects/markdown /).' ,
156
+ 'suggestion for how to access supported similar data. Formatted using ' +
157
+ 'the Markdown syntax (as specified by [CommonMark ](https://commonmark.org /).' ,
158
158
defaultValue : DEFAULT_DEPRECATION_REASON ,
159
159
} ,
160
160
} ,
Original file line number Diff line number Diff line change @@ -629,8 +629,8 @@ describe('Type System Printer', () => {
629
629
directive @deprecated(
630
630
"""
631
631
Explains why this element was deprecated, usually also including a suggestion
632
- for how to access supported similar data. Formatted in
633
- [Markdown ](https://daringfireball.net/projects/markdown /).
632
+ for how to access supported similar data. Formatted using the Markdown syntax
633
+ (as specified by [CommonMark ](https://commonmark.org /).
634
634
"""
635
635
reason: String = "No longer supported"
636
636
) on FIELD_DEFINITION | ENUM_VALUE
@@ -865,8 +865,8 @@ describe('Type System Printer', () => {
865
865
# Marks an element of a GraphQL schema as no longer supported.
866
866
directive @deprecated(
867
867
# Explains why this element was deprecated, usually also including a suggestion
868
- # for how to access supported similar data. Formatted in
869
- # [Markdown ](https://daringfireball.net/projects/markdown /).
868
+ # for how to access supported similar data. Formatted using the Markdown syntax
869
+ # (as specified by [CommonMark ](https://commonmark.org /).
870
870
reason: String = "No longer supported"
871
871
) on FIELD_DEFINITION | ENUM_VALUE
872
872
You can’t perform that action at this time.
0 commit comments