From 253745d29fd510620a1bcee0add50a7663a9f5d6 Mon Sep 17 00:00:00 2001 From: Davis King Date: Sun, 19 Apr 2020 13:57:16 -0400 Subject: [PATCH] fix typo in comment --- dlib/statistics/lda.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlib/statistics/lda.h b/dlib/statistics/lda.h index 36bbaf989..a0b3ada4d 100644 --- a/dlib/statistics/lda.h +++ b/dlib/statistics/lda.h @@ -157,7 +157,7 @@ namespace dlib std::vector > temp; temp.reserve(true_detections.size()+false_detections.size()); // We use -1 for true labels and +1 for false so when we call std::sort() below it will sort - // runs with equal detection scores so true come first. This will avoid it seeming like we + // runs with equal detection scores so false come first. This will avoid it seeming like we // can separate true from false when scores are equal in the loop below. const int true_label = -1; const int false_label = +1;