Skip to content

Commit cdf4e61

Browse files
committed
fix(cargo fmt --all)
1 parent 1f4cb0e commit cdf4e61

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/string/multiple_longest_common_subsequence.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -193,13 +193,13 @@ fn init_queue(ctx: &mut Context, queue: &mut Vec<Vec<usize>>) {
193193
reorder_queue(ctx, queue);
194194
}
195195

196-
/// Computes the suffix tables between each pair of string
196+
/// Computes the suffix tables between each pair of string
197197
/// used by the MLCS-Astar heuristic function
198198
/// [Documentation](https://github.com/epita-rs/MLCS/blob/main/paper.pdf)
199199
///
200200
/// # Arguments
201201
///
202-
/// * `chains` - A slice of collected strings
202+
/// * `chains` - A slice of collected strings
203203
/// - from which the suffix tables are computed.
204204
fn matrices_score(chains: &[Vec<char>]) -> Vec<Vec<Vec<u64>>> {
205205
let mut scores: Vec<Vec<Vec<u64>>> = vec![];

0 commit comments

Comments
 (0)