From dbfcc762da508cd2fb1929939a30c46006f77f7d Mon Sep 17 00:00:00 2001
From: Rogerio Moura <roger0.rm@gmail.com>
Date: Mon, 6 May 2019 00:20:21 -0300
Subject: [PATCH] Specify path to graphql_object module (#352)

---
 docs/book/content/servers/iron.md | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/docs/book/content/servers/iron.md b/docs/book/content/servers/iron.md
index ab066ae7..3218543b 100644
--- a/docs/book/content/servers/iron.md
+++ b/docs/book/content/servers/iron.md
@@ -47,7 +47,7 @@ fn context_factory(_: &mut Request) -> IronResult<()> {
 
 struct Root;
 
-graphql_object!(Root: () |&self| {
+juniper::graphql_object!(Root: () |&self| {
     field foo() -> String {
         "Bar".to_owned()
     }
@@ -98,7 +98,7 @@ fn context_factory(req: &mut Request) -> IronResult<Context> {
 
 struct Root;
 
-graphql_object!(Root: Context |&self| {
+juniper::graphql_object!(Root: Context |&self| {
     field my_addr(&executor) -> String {
         let context = executor.context();