Skip to content

Commit 42c5208

Browse files
committed
Update Section 5 - Consistent spacing
1 parent b3d955a commit 42c5208

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

Section 5 -- Validation.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ enum DogCommand { SIT, DOWN, HEEL }
2525
type Dog : Pet {
2626
name: String!,
2727
nickname: String,
28-
barkVolume : Int,
28+
barkVolume: Int,
2929
doesKnowCommand(dogCommand: DogCommand!) : Boolean!
3030
isHousetrained(atOtherHomes: Boolean): Boolean!
3131
}
@@ -71,7 +71,7 @@ fragment fieldNotDefined on Dog {
7171
}
7272

7373
fragment aliasedLyingFieldTargetNotDefined on Dog {
74-
barkVolume : kawVolume
74+
barkVolume: kawVolume
7575
}
7676
```
7777

@@ -141,8 +141,8 @@ fragment mergeIdenticalFields on Dog {
141141
}
142142

143143
fragment mergeIdenticalAliasesAndFields on Dog {
144-
otherName : name
145-
otherName : name
144+
otherName: name
145+
otherName: name
146146
}
147147
```
148148

@@ -151,7 +151,7 @@ The following is not able to merge:
151151
```!graphql
152152
153153
fragment conflictingBecauseAlias on Dog {
154-
name : nickname
154+
name: nickname
155155
name
156156
}
157157

0 commit comments

Comments
 (0)