Skip to content

Commit

Permalink
chore(docs): Fix typo in image tutorial (#27331)
Browse files Browse the repository at this point in the history
  • Loading branch information
bicstone authored Oct 8, 2020
1 parent 726d56c commit 18eee9d
Showing 1 changed file with 11 additions and 10 deletions.
21 changes: 11 additions & 10 deletions docs/tutorial/gatsby-image-tutorial/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -256,19 +256,20 @@ This example is attempting to query for all the data in `speaking.yaml` and the
The first thing to know is that an alias is assigning a name to a query. The second thing to know is that aliases are optional, but they can make your life easier! Below is an example.

```graphql
talks: allSpeakingYaml {
edges {
node {
image {
childImageSharp {
fluid {
...GatsbyImageSharpFluid
}
}
}
{
talks: allSpeakingYaml {
edges {
node {
image {
childImageSharp {
fluid {
...GatsbyImageSharpFluid
}
}
}
}
}
}
}
```

Expand Down

0 comments on commit 18eee9d

Please sign in to comment.