Skip to content

Commit 6844cf4

Browse files
committed
Fix typo in naive bayes docs
1 parent cc8e1b3 commit 6844cf4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/machine-learning/classification/naive-bayes.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,6 @@ To predict sample label use `predict` method. You can provide one sample or arra
2424
$classifier->predict([3, 1, 1]);
2525
// return 'a'
2626
27-
$classifier->predict([[3, 1, 1], [1, 4, 1]);
27+
$classifier->predict([[3, 1, 1], [1, 4, 1]]);
2828
// return ['a', 'b']
2929
```

0 commit comments

Comments
 (0)