diff --git a/slides/cours_7.md b/slides/cours_7.md index 1fff402b8daab4a7c66defb5905fd10d78d83187..c8615112a51c5b9196a46092f358b500a09f1969 100644 --- a/slides/cours_7.md +++ b/slides/cours_7.md @@ -974,7 +974,7 @@ int ind = 0; while (ind < SIZE-1) { min = find_min(tab[ind:SIZE]); swap(min, tab[ind]); - ind += 1 + ind += 1; } ```