From 14f9b8b33ce0916eb0bf52dc12c37338d3973213 Mon Sep 17 00:00:00 2001 From: Luca Mondada Date: Fri, 28 Jul 2023 08:59:49 +0200 Subject: [PATCH] Fix docs --- src/algorithms/toposort.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/algorithms/toposort.rs b/src/algorithms/toposort.rs index 3820dd5..cabdf9b 100644 --- a/src/algorithms/toposort.rs +++ b/src/algorithms/toposort.rs @@ -2,7 +2,7 @@ use crate::{Direction, LinkView, NodeIndex, PortIndex, SecondaryMap}; use bitvec::prelude::BitVec; use std::{collections::VecDeque, fmt::Debug, iter::FusedIterator}; -/// Returns an iterator over a [`PortGraph`] in topological order. +/// Returns an iterator over a [`LinkView`] in topological order. /// /// The `Map` type parameter specifies the type of the secondary map that is /// used to store the dominator tree data. The default is [`BitVec`], which is