Skip to content
This repository was archived by the owner on Mar 20, 2024. It is now read-only.

Fix a small typo in the interfaces chapter #13

Merged
merged 1 commit into from
Nov 23, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/types/interfaces.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ let's have a look at the same end-result from a few different implementations:

Traits are maybe the most obvious concept you want to use when building
interfaces. But because GraphQL supports downcasting while Rust doesn't, you'll
have to manually specify how to convert an trait into a concrete type. This can
have to manually specify how to convert a trait into a concrete type. This can
be done in a couple of different ways:

### Downcasting via accessor methods
Expand Down