From 2c2c487aa92074cfaea7a9dbbbabd1ededf1f732 Mon Sep 17 00:00:00 2001 From: nitnelave Date: Thu, 26 Aug 2021 09:25:48 +0200 Subject: [PATCH] Fix typos in the actix handler example --- juniper_actix/examples/actix_server.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/juniper_actix/examples/actix_server.rs b/juniper_actix/examples/actix_server.rs index 91848050d..5a13b79a2 100644 --- a/juniper_actix/examples/actix_server.rs +++ b/juniper_actix/examples/actix_server.rs @@ -94,10 +94,10 @@ fn schema() -> Schema { } async fn graphiql_route() -> Result { - graphiql_handler("/graphgl", None).await + graphiql_handler("/graphql", None).await } async fn playground_route() -> Result { - playground_handler("/graphgl", None).await + playground_handler("/graphql", None).await } async fn graphql_route( req: actix_web::HttpRequest,