From 7f9614bdd86066c16d02c640e0d52f1263d77cef Mon Sep 17 00:00:00 2001
From: Tender Wang <tndrwang@gmail.com>
Date: Fri, 19 Sep 2025 18:40:30 +0800
Subject: [PATCH] Fix a typo in the comment.

---
 src/backend/optimizer/path/indxpath.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/backend/optimizer/path/indxpath.c b/src/backend/optimizer/path/indxpath.c
index 4f5c98f0091..a0e20e93257 100644
--- a/src/backend/optimizer/path/indxpath.c
+++ b/src/backend/optimizer/path/indxpath.c
@@ -3324,7 +3324,7 @@ match_orclause_to_indexcol(PlannerInfo *root,
 	 * OR entry must be in the form: (indexkey operator constant) or (constant
 	 * operator indexkey).  Operators of all the entries must match.  To be
 	 * effective, give up on the first non-matching entry.  Exit is
-	 * implemented as a break from the loop, which is catched afterwards.
+	 * implemented as a break from the loop, which is caught afterwards.
 	 */
 	foreach(lc, orclause->args)
 	{
-- 
2.34.1

