From c89b44a68d918e24335f2d132684c53dd16d0d2b Mon Sep 17 00:00:00 2001
From: David Rowley <drowley@postgresql.org>
Date: Tue, 6 Sep 2022 15:59:15 +1200
Subject: [PATCH] Fix typo in 16d69ec29

As noted by Justin Pryzby, just I forgot to commit locally before creating
a patch file.

Discussion: https://postgr.es/m/20220901053146.GI31833@telsasoft.com
---
 src/backend/commands/trigger.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/backend/commands/trigger.c b/src/backend/commands/trigger.c
index 08f9a307fd..28c3dcd0f7 100644
--- a/src/backend/commands/trigger.c
+++ b/src/backend/commands/trigger.c
@@ -1157,7 +1157,7 @@ CreateTriggerFiringOn(CreateTrigStmt *stmt, const char *queryString,
 
 		/*
 		 * We don't currently expect to be called with a valid indexOid.  If
-		 * that ever changes then we'll need to quite code here to find the
+		 * that ever changes then we'll need to write code here to find the
 		 * corresponding child index.
 		 */
 		Assert(!OidIsValid(indexOid));