diff --git a/matrices.h b/matrices.h index e8dbca2..f24bbe3 100644 --- a/matrices.h +++ b/matrices.h @@ -141,8 +141,8 @@ Matrix Matrix::Substract(const Matrix* other){ } // Print a matrix in terminal, with a title -void Matrix::Print(std::string_view titre){ - std::cout << titre << std::endl; +void Matrix::Print(std::string_view title){ + std::cout << title << std::endl; for(int m = 0; m < values.size(); m++){ std::cout << '|'; for(int n = 0; n < values[m].size(); n++){