Skip to content

Commit

Permalink
Fix typo in naive bayes docs
Browse files Browse the repository at this point in the history
  • Loading branch information
akondas committed Jan 23, 2019
1 parent cc8e1b3 commit 6844cf4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/machine-learning/classification/naive-bayes.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,6 @@ To predict sample label use `predict` method. You can provide one sample or arra
$classifier->predict([3, 1, 1]);
// return 'a'
$classifier->predict([[3, 1, 1], [1, 4, 1]);
$classifier->predict([[3, 1, 1], [1, 4, 1]]);
// return ['a', 'b']
```

0 comments on commit 6844cf4

Please sign in to comment.