From 292d174a73ece9054c35109a2763428972676bc0 Mon Sep 17 00:00:00 2001 From: Harrison Burt <57491488+ChillFish8@users.noreply.github.com> Date: Sun, 15 Aug 2021 21:55:33 +0100 Subject: [PATCH] correct hyper link to add the .rs suffix. (#183) This fixes the broken redirect for `tracing_aka_logging` which current redirects to what it thinks is a folder instead of a file, resulting in a 404. --- examples/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/README.md b/examples/README.md index fd5b418b..3f35a6fb 100644 --- a/examples/README.md +++ b/examples/README.md @@ -18,7 +18,7 @@ - [`chat`](../examples/chat.rs) - Chat application example. - [`404`](../examples/404.rs) - Custom 404 page. - [`async-graphql`](../examples/async-graphql) - GraphQL example using [`async-graphql`](https://crates.io/crates/async-graphql). -- [`tracing_aka_logging`](../examples/tracing_aka_logging) - How to setup and configure tracing/logging. +- [`tracing_aka_logging`](../examples/tracing_aka_logging.rs) - How to setup and configure tracing/logging. - [`oauth`](../examples/oauth.rs) - Implementing authentication using [`oauth2`](https://crates.io/crates/oauth2) and [`async-session`](https://crates.io/crates/async-session).