From 645dae3d7ab45393cb0f378c9ae8d873b217f7ed Mon Sep 17 00:00:00 2001 From: Jesse Rosenberger Date: Thu, 3 May 2018 16:46:30 -0700 Subject: [PATCH] Spelling fix --- docs/source/migration-two-dot.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/source/migration-two-dot.md b/docs/source/migration-two-dot.md index 0a758cc1..c3a1d51e 100644 --- a/docs/source/migration-two-dot.md +++ b/docs/source/migration-two-dot.md @@ -141,15 +141,15 @@ const { ApolloServer, gql } = require("apollo-server"); // Construct a schema, using GraphQL schema language const typeDefs = gql` type Query { - annoucement: String + announcement: String } `; // Provide resolver functions for your schema fields const resolvers = { Query: { - annoucement: () => - `Say hello to the new ApolloServer! A production ready GraphQL server with an incredible getting started experience.` + announcement: () => + `Say hello to the new Apollo Server! A production ready GraphQL server with an incredible getting started experience.` } };