Fix typo in naive bayes docs

This commit is contained in:
Arkadiusz Kondas 2019-01-23 09:41:44 +01:00
parent cc8e1b3753
commit 6844cf407a
No known key found for this signature in database
GPG Key ID: 0DCDDE5537384C29
1 changed files with 1 additions and 1 deletions

View File

@ -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']
```