From fbfc93802f03456432198c6ccd41b4a03c2d5970 Mon Sep 17 00:00:00 2001 From: hritik25 Date: Sat, 21 Feb 2015 03:46:41 +0530 Subject: [PATCH] Update TREE_EXPLANATION.txt Small typo --- src/mlpack/core/tree/TREE_EXPLANATION.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mlpack/core/tree/TREE_EXPLANATION.txt b/src/mlpack/core/tree/TREE_EXPLANATION.txt index 5c3616d8783..5ff66f479b5 100644 --- a/src/mlpack/core/tree/TREE_EXPLANATION.txt +++ b/src/mlpack/core/tree/TREE_EXPLANATION.txt @@ -20,7 +20,7 @@ There are also a few miscellanious items for tracking data about the tree and qu Below is a more detailed description and the name of the file(s) with the applicable functionality. All names are given relative to .../mlpack/src/mlpack/core/tree/ : Bounds. - Bounds are used to record the possible location so points in a node. This is used + Bounds are used to record the possible location of points in a node. This is used to allow more aggressive pruning of the tree while searching. See files: ballbound.hpp, ballbound_impl.hpp, bounds.hpp, hrectbound.hpp,