From cd87a5ed65f2b4f3bdf07c9664a64696c86d17be Mon Sep 17 00:00:00 2001
From: Robert Haas <rhaas@postgresql.org>
Date: Tue, 7 Mar 2017 10:43:28 -0500
Subject: [PATCH] Fix wrong word in comment.

Third time's the charm.
---
 src/backend/utils/adt/misc.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/backend/utils/adt/misc.c b/src/backend/utils/adt/misc.c
index 869c3bd7fa..1ec7f32470 100644
--- a/src/backend/utils/adt/misc.c
+++ b/src/backend/utils/adt/misc.c
@@ -939,7 +939,7 @@ pg_current_logfile(PG_FUNCTION_ARGS)
 		log_filepath = strchr(lbuffer, ' ');
 		if (log_filepath == NULL)
 		{
-			/* Uh oh.  No newline found, so file content is corrupted. */
+			/* Uh oh.  No space found, so file content is corrupted. */
 			elog(ERROR,
 				 "missing space character in \"%s\"", LOG_METAINFO_DATAFILE);
 			break;
-- 
2.50.1