Skip to content

Commit 3671a96

Browse files
committed
Appease Prettier
1 parent b81953a commit 3671a96

File tree

1 file changed

+9
-4
lines changed

1 file changed

+9
-4
lines changed

spec/Section 3 -- Type System.md

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -405,14 +405,16 @@ conform to its described rules.
405405
```graphql example
406406
scalar UUID @specifiedBy(url: "https://tools.ietf.org/html/rfc4122")
407407
scalar URL @specifiedBy(url: "https://tools.ietf.org/html/rfc3986")
408-
scalar DateTime @specifiedBy(url: "https://scalars.graphql.org/andimarek/date-time")
408+
scalar DateTime
409+
@specifiedBy(url: "https://scalars.graphql.org/andimarek/date-time")
409410
```
410411

411412
Custom *scalar specification URL*s should provide a single, stable format to
412413
avoid ambiguity. If the linked specification is in flux, the service should link
413414
to a fixed version rather than to a resource which might change.
414415

415-
Note: Some community-maintained custom scalar specifications are hosted at [scalars.graphql.org](https://scalars.graphql.org/).
416+
Note: Some community-maintained custom scalar specifications are hosted at
417+
[scalars.graphql.org](https://scalars.graphql.org/).
416418

417419
Custom *scalar specification URL*s should not be changed once defined. Doing so
418420
would likely disrupt tooling or could introduce breaking changes within the
@@ -422,7 +424,9 @@ Built-in scalar types must not provide a _scalar specification URL_ as they are
422424
specified by this document.
423425

424426
Note: Custom scalars should also summarize the specified format and provide
425-
examples in their description; see the GraphQL scalars [implementation guide](https://scalars.graphql.org/implementation-guide) for more guidance.
427+
examples in their description; see the GraphQL scalars
428+
[implementation guide](https://scalars.graphql.org/implementation-guide) for
429+
more guidance.
426430

427431
**Result Coercion and Serialization**
428432

@@ -2113,7 +2117,8 @@ behavior of [custom scalar types](#sec-Scalars.Custom-Scalars). The URL should
21132117
point to a human-readable specification of the data format, serialization, and
21142118
coercion rules. It must not appear on built-in scalar types.
21152119

2116-
Note: Details on implementing a GraphQL scalar specification can be found in the [scalars.graphql.org implementation guide](https://scalars.graphql.org/implementation-guide).
2120+
Note: Details on implementing a GraphQL scalar specification can be found in the
2121+
[scalars.graphql.org implementation guide](https://scalars.graphql.org/implementation-guide).
21172122

21182123
In this example, a custom scalar type for `UUID` is defined with a URL pointing
21192124
to the relevant IETF specification.

0 commit comments

Comments
 (0)