Skip to content

Commit

Permalink
Merge pull request opencv#8019 from berak:patch-2
Browse files Browse the repository at this point in the history
ml: fix small typo in lr.cpp (opencv#8019)
  • Loading branch information
berak authored and alalek committed Jan 17, 2017
1 parent a8e5d1d commit 89a740a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/ml/src/lr.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -579,7 +579,7 @@ void LogisticRegressionImpl::write(FileStorage& fs) const
CV_Error(CV_StsBadArg,"file can't open. Check file path");
}
writeFormat(fs);
string desc = "Logisitic Regression Classifier";
string desc = "Logistic Regression Classifier";
fs<<"classifier"<<desc.c_str();
fs<<"alpha"<<this->params.alpha;
fs<<"iterations"<<this->params.num_iters;
Expand Down

0 comments on commit 89a740a

Please sign in to comment.