Skip to content
This repository was archived by the owner on Mar 20, 2024. It is now read-only.

Fix broken links, remove typo #20

Merged
merged 1 commit into from
Jun 4, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ Juniper has not reached 1.0 yet, thus some API instability should be expected.

[graphql]: http://graphql.org
[graphiql]: https://github.com/graphql/graphiql
[iron]: http://ironframework.io
[iron]: https://github.com/iron/iron
[graphql_spec]: http://facebook.github.io/graphql
[test_schema_rs]: https://github.com/graphql-rust/juniper/blob/master/juniper/src/tests/schema.rs
[tokio]: https://github.com/tokio-rs/tokio
Expand Down
2 changes: 1 addition & 1 deletion docs/quickstart.md
Original file line number Diff line number Diff line change
Expand Up @@ -188,4 +188,4 @@ fn main() {
[rocket]: servers/rocket.md
[iron]: servers/iron.md
[tutorial]: ./tutorial.html
[jp_obj_macro]: https://docs.rs/juniper/latest/juniper/macro.graphql_object.html
[jp_obj_macro]: https://docs.rs/juniper/latest/juniper/attr.graphql_object.html
2 changes: 1 addition & 1 deletion docs/servers/hyper.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Integrating with Hyper

[Hyper] is a is a fast HTTP implementation that many other Rust web frameworks
[Hyper] is a fast HTTP implementation that many other Rust web frameworks
leverage. It offers asynchronous I/O via the tokio runtime and works on
Rust's stable channel.

Expand Down
2 changes: 1 addition & 1 deletion docs/servers/iron.md
Original file line number Diff line number Diff line change
Expand Up @@ -120,6 +120,6 @@ graphql_object!(Root: Context |&self| {

FIXME: Show how the `persistent` crate works with contexts using e.g. `r2d2`.

[iron]: http://ironframework.io
[iron]: https://github.com/iron/iron
[graphiql]: https://github.com/graphql/graphiql
[mount]: https://github.com/iron/mount
2 changes: 1 addition & 1 deletion docs/servers/warp.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,4 @@ Included in the source is a [small example][example] which sets up a basic Graph
[hyper]: https://hyper.rs/
[warp]: https://crates.io/crates/warp
[juniper_warp]: https://github.com/graphql-rust/juniper/tree/master/juniper_warp
[example]: https://github.com/graphql-rust/juniper/tree/master/juniper_warp/examples/warp_server
[example]: https://github.com/graphql-rust/juniper/tree/master/juniper_warp/examples/warp_server.rs