Fixed links in documentation

This commit is contained in:
elvis
2025-08-28 23:10:30 +02:00
parent 131683d4aa
commit 5812c75e37
2 changed files with 2 additions and 2 deletions

View File

@ -1,6 +1,6 @@
//! Bisimilarity by Kanellakis and Smolka from The algorithmics of bisimilarity //! Bisimilarity by Kanellakis and Smolka from The algorithmics of bisimilarity
//! by Luca Aceto, Anna Ingolfsdottir and Jirí Srba; pages 105 to 110 //! by Luca Aceto, Anna Ingolfsdottir and Jirí Srba; pages 105 to 110
//! https://doi.org/10.1017/CBO9780511792588.004 //! <https://doi.org/10.1017/CBO9780511792588.004>
use std::collections::{BTreeSet, HashMap, HashSet}; use std::collections::{BTreeSet, HashMap, HashSet};

View File

@ -1,6 +1,6 @@
//! Bisimilarity by Paige and Tarjan from Three Partition Refinement Algorithms //! Bisimilarity by Paige and Tarjan from Three Partition Refinement Algorithms
//! by Robert Paige L., Robert Endre Tarjan; pages 977 to 983 //! by Robert Paige L., Robert Endre Tarjan; pages 977 to 983
//! https://doi.org/10.1137/0216062 //! <https://doi.org/10.1137/0216062>
use std::cell::RefCell; use std::cell::RefCell;
use std::collections::hash_map::Entry; use std::collections::hash_map::Entry;