diff --git a/docs/quickstart.md b/docs/quickstart.md index bdf12d803..2147d4c4c 100644 --- a/docs/quickstart.md +++ b/docs/quickstart.md @@ -34,12 +34,12 @@ resolvers, which you will use for the `Query` and `Mutation` roots. use juniper::{FieldResult}; -#struct DatabasePool; -#impl DatabasePool { -# fn get_connection(&self) -> FieldResult { Ok(DatabasePool) } -# fn find_human(&self, id: &str) -> FieldResult { Err("")? } -# fn insert_human(&self, human: &NewHuman) -> FieldResult { Err("")? } -# } +# struct DatabasePool; +# impl DatabasePool { +# fn get_connection(&self) -> FieldResult { Ok(DatabasePool) } +# fn find_human(&self, id: &str) -> FieldResult { Err("")? } +# fn insert_human(&self, human: &NewHuman) -> FieldResult { Err("")? } +# } use juniper::{FieldResult};