Skip to content

Commit 348d489

Browse files
authored
KDTree: Corrected usage example (#219)
1 parent 1b6d39d commit 348d489

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Changelog
22

3+
## 16.10.2
4+
- KDTree:
5+
- Corrected usage example
6+
37
## 16.10.1
48
- README.md:
59
- Proofreading the texts

lib/src/retrieval/kd_tree/kd_tree.dart

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -105,6 +105,7 @@ abstract class KDTree implements Serializable {
105105
/// the source [points] matrix. Example:
106106
///
107107
/// ```dart
108+
/// import 'package:ml_algo/ml_algo.dart';
108109
/// import 'package:ml_dataframe/ml_dataframe.dart';
109110
/// import 'package:ml_linalg/vector.dart';
110111
///
@@ -132,8 +133,7 @@ abstract class KDTree implements Serializable {
132133
/// the source [points] matrix. Example:
133134
///
134135
/// ```dart
135-
/// import 'package:ml_dataframe/ml_dataframe.dart';
136-
/// import 'package:ml_linalg/vector.dart';
136+
/// import 'package:ml_algo/ml_algo.dart';
137137
///
138138
/// final data = [
139139
/// [21, 34, 22, 11],

pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: ml_algo
22
description: Machine learning algorithms, Machine learning models performance evaluation functionality
3-
version: 16.10.1
3+
version: 16.10.2
44
homepage: https://github.com/gyrdym/ml_algo
55

66
environment:

0 commit comments

Comments
 (0)