From 5f19624d4eaa2b951955b4522b720feaec8fddb7 Mon Sep 17 00:00:00 2001 From: Ellen Emilia Anna Zscheile Date: Mon, 12 May 2025 19:08:12 +0200 Subject: [PATCH] docs(stepper): fix broken internal link in docs --- src/stepper.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/stepper.rs b/src/stepper.rs index f4a6df0..2af8d7f 100644 --- a/src/stepper.rs +++ b/src/stepper.rs @@ -16,9 +16,9 @@ use std::ops::ControlFlow; /// states. Advanceable data structures designed for uses where the future state /// intentionally *may* change from the information supplied as arguments are /// not considered steppers. An example of such an advanceable non-stepper is -/// the [`navcord::Navcord`] struct, as it does not progress linearly because -/// it branches out by on each call taking in a changeable `to` argument that -/// affects the future states. +/// the [`Navcord`](crate::router::navcord::Navcord) struct, as it does not progress +/// linearly because it branches out by on each call taking in a +/// changeable `to` argument that affects the future states. /// /// Petgraph's counterpart of this trait is its /// [`petgraph::visit::Walker`] trait.