From 284c0a5d4e98180e8b6b16753a4c66ea106cb9a5 Mon Sep 17 00:00:00 2001 From: Samuel Tardieu Date: Sun, 22 Sep 2024 10:36:06 +0200 Subject: [PATCH] docs: remove empty lines in comments --- src/directed/astar.rs | 4 ++-- src/directed/yen.rs | 1 - 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/src/directed/astar.rs b/src/directed/astar.rs index 2bdab809..64a10d00 100644 --- a/src/directed/astar.rs +++ b/src/directed/astar.rs @@ -148,7 +148,7 @@ where /// Compute all shortest paths using the [A* search /// algorithm](https://en.wikipedia.org/wiki/A*_search_algorithm). - +/// /// Whereas `astar` (non-deterministic-ally) returns a single shortest /// path, `astar_bag` returns all shortest paths (in a /// non-deterministic order). @@ -276,7 +276,7 @@ where /// Compute all shortest paths using the [A* search /// algorithm](https://en.wikipedia.org/wiki/A*_search_algorithm). - +/// /// Whereas `astar` (non-deterministic-ally) returns a single shortest /// path, `astar_bag` returns all shortest paths (in a /// non-deterministic order). diff --git a/src/directed/yen.rs b/src/directed/yen.rs index 752e3272..5d303ac3 100644 --- a/src/directed/yen.rs +++ b/src/directed/yen.rs @@ -95,7 +95,6 @@ where /// 2); /// assert!(empty.is_empty()); /// ``` - pub fn yen( start: &N, mut successors: FN,