From ecf0622a85bd4c98a8cfda012376aaebd69df0cd Mon Sep 17 00:00:00 2001 From: Stefan Weil Date: Sat, 10 Aug 2024 18:42:13 +0200 Subject: [PATCH] Fix comment Signed-off-by: Stefan Weil --- src/ccstruct/rect.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ccstruct/rect.h b/src/ccstruct/rect.h index ab4f57beb5..b6bb7fbf53 100644 --- a/src/ccstruct/rect.h +++ b/src/ccstruct/rect.h @@ -123,7 +123,7 @@ class TESS_API TBOX { // bounding box } } - TDimension width() const { // how high is it? + TDimension width() const { // how wide is it? if (!null_box()) { return top_right.x() - bot_left.x(); } else {