From 1c025be06869e1a23c6739ea82d3b56dfe070400 Mon Sep 17 00:00:00 2001 From: Adrien BAK Date: Wed, 13 Nov 2013 16:13:47 +0900 Subject: [PATCH] fix typos --- samples/cpp/tutorial_code/ImgTrans/HoughCircle_Demo.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/samples/cpp/tutorial_code/ImgTrans/HoughCircle_Demo.cpp b/samples/cpp/tutorial_code/ImgTrans/HoughCircle_Demo.cpp index 0522e1892..ee512414d 100644 --- a/samples/cpp/tutorial_code/ImgTrans/HoughCircle_Demo.cpp +++ b/samples/cpp/tutorial_code/ImgTrans/HoughCircle_Demo.cpp @@ -77,9 +77,9 @@ int main(int, char** argv) createTrackbar(cannyThresholdTrackbarName, windowName, &cannyThreshold,maxCannyThreshold); createTrackbar(accumulatorThresholdTrackbarName, windowName, &accumulatorThreshold, maxAccumulatorThreshold); - // inifinite loop to display + // infinite loop to display // and refresh the content of the output image - // unti the user presses q or Q + // until the user presses q or Q int key = 0; while(key != 'q' && key != 'Q') {