From f6523c9d29de19ebc2634bb1bb1d4c804f727196 Mon Sep 17 00:00:00 2001 From: trevyn <github@eden2.com> Date: Sat, 27 Feb 2021 01:59:19 +0400 Subject: [PATCH] Fix 404 for juniper_warp example (#885) Co-authored-by: Christian Legnitto <LegNeato@users.noreply.github.com> --- juniper_warp/src/lib.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/juniper_warp/src/lib.rs b/juniper_warp/src/lib.rs index 7bb88cb5..409085a9 100644 --- a/juniper_warp/src/lib.rs +++ b/juniper_warp/src/lib.rs @@ -13,7 +13,7 @@ A basic usage example can also be found in the [Api documentation][documentation ## Examples -Check [examples/warp_server][example] for example code of a working warp +Check [examples/warp_server.rs][example] for example code of a working warp server with GraphQL handlers. ## Links @@ -32,7 +32,7 @@ Check the LICENSE file for details. [Juniper]: https://github.com/graphql-rust/juniper [GraphQL]: http://graphql.org [documentation]: https://docs.rs/juniper_warp -[example]: https://github.com/graphql-rust/juniper/blob/master/juniper_warp/examples/warp_server +[example]: https://github.com/graphql-rust/juniper/blob/master/juniper_warp/examples/warp_server.rs */