Small typo in a comment in pg_regress.c

Started by Andreas 'ads' Scherbaumalmost 10 years ago2 messages
#1Andreas 'ads' Scherbaum
adsmail@wars-nicht.de
1 attachment(s)

Hi,

stumbled over this while looking into the source. Patch attached.

Regards,

--
Andreas 'ads' Scherbaum
German PostgreSQL User Group
European PostgreSQL User Group - Board of Directors
Volunteer Regional Contact, Germany - PostgreSQL Project

Attachments:

afer.difftext/x-patch; name=afer.diffDownload
diff --git a/src/test/regress/pg_regress.c b/src/test/regress/pg_regress.c
index 416829d..343fd19 100644
--- a/src/test/regress/pg_regress.c
+++ b/src/test/regress/pg_regress.c
@@ -1329,7 +1329,7 @@ results_differ(const char *testname, const char *resultsfile, const char *defaul
 	if (platform_expectfile)
 	{
 		/*
-		 * Replace everything afer the last slash in expectfile with what the
+		 * Replace everything after the last slash in expectfile with what the
 		 * platform_expectfile contains.
 		 */
 		char	   *p = strrchr(expectfile, '/');
#2Stephen Frost
sfrost@snowman.net
In reply to: Andreas 'ads' Scherbaum (#1)
Re: Small typo in a comment in pg_regress.c

Andreas,

* Andreas 'ads' Scherbaum (adsmail@wars-nicht.de) wrote:

stumbled over this while looking into the source. Patch attached.

Fix pushed, thanks!

Stephen