Skip to content

Commit

Permalink
docs: remove empty lines in comments
Browse files Browse the repository at this point in the history
  • Loading branch information
samueltardieu committed Sep 22, 2024
1 parent c0b7636 commit 284c0a5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/directed/astar.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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).
Expand Down Expand Up @@ -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).
Expand Down
1 change: 0 additions & 1 deletion src/directed/yen.rs
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,6 @@ where
/// 2);
/// assert!(empty.is_empty());
/// ```

pub fn yen<N, C, FN, IN, FS>(
start: &N,
mut successors: FN,
Expand Down

0 comments on commit 284c0a5

Please sign in to comment.