fixes typo

This commit is contained in:
René Fuhry 2023-05-31 15:02:38 +02:00 committed by GitHub
parent f408292eb5
commit aa89d20626
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -10,7 +10,7 @@ fn output() {
let distanz_matrix: Vec<Vec<usize>> = graph::calculate_distanz_matrix(&adjazenz_matrix);
let weg_matrix: Vec<Vec<usize>> = graph::calculate_weg_matrix(&adjazenz_matrix);
println!("adjazen matrix:");
println!("adjazenz matrix:");
graph::matrix::show(&adjazenz_matrix);
println!("\ndistanz matrix:");
graph::matrix::show(&distanz_matrix);
@ -41,4 +41,4 @@ fn output() {
let articulations = graph::find_articulations(&adjazenz_matrix, &components);
println!("articulations: {:?}", articulations);
}
}