fix: mispelling in...

...`machine_learning/ordinary_least_squares_regressor.cpp`.
This commit is contained in:
David Leal 2021-02-11 20:35:45 -06:00 committed by GitHub
parent 1d9774fd3d
commit 287e00fa68
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -436,7 +436,7 @@ int main() {
std::vector<float> Y(N);
std::cout
<< "Enter training data. Per sample, provide features ad one output."
<< "Enter training data. Per sample, provide features and one output."
<< std::endl;
for (size_t rows = 0; rows < N; rows++) {