From f5e4b6b9b6beb5697df1ea0e63b05e8aab23ba9b Mon Sep 17 00:00:00 2001 From: Victor-Nicolae Savu <2445711+Victor-Savu@users.noreply.github.com> Date: Mon, 2 Mar 2020 03:57:17 -0500 Subject: [PATCH] Match the list of integrations to the page order (#548) * Remove duplicate link to Hyper integration The `Adding a Server` page contains a duplicate link to `Hyper`. The first of them can cause the reader to accidentally skip the `Rocket` and `Iron` integration pages because their pages are before the one for `Hyper` in the reading order. Remove the first link so that the list of official server integrations matches the page order. * Match the list of integrations to the page order In the book, the pages for the official integrations appear in the order: `Warp`, `Rocket`, `Iron`, `Hyper`, but on the `Official Server Integrations` page they are listed with `Hyper` first. This can cause readers to accidentally skip the other three integrations if they click on the link for `Hyper` first. Move `Hyper` to the bottom of the list to match the reading order of the book. * Remove unnecessary blank line --- docs/book/content/servers/index.md | 1 - docs/book/content/servers/official.md | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/docs/book/content/servers/index.md b/docs/book/content/servers/index.md index aafc6b8c..c60eab02 100644 --- a/docs/book/content/servers/index.md +++ b/docs/book/content/servers/index.md @@ -7,7 +7,6 @@ To actually get a server up and running, there are multiple official and third-party integration crates that will get you there. - [Official Server Integrations](official.md) - - [Hyper](hyper.md) - [Warp](warp.md) - [Rocket](rocket.md) - [Iron](iron.md) diff --git a/docs/book/content/servers/official.md b/docs/book/content/servers/official.md index 990892f7..d5e2878a 100644 --- a/docs/book/content/servers/official.md +++ b/docs/book/content/servers/official.md @@ -3,7 +3,7 @@ Juniper provides official integration crates for several popular Rust server libraries. -- [Hyper](hyper.md) - [Warp](warp.md) - [Rocket](rocket.md) - [Iron](iron.md) +- [Hyper](hyper.md)