aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMichael Paquier <michael@paquier.xyz>2019-01-15 08:47:08 +0900
committerMichael Paquier <michael@paquier.xyz>2019-01-15 08:47:08 +0900
commit6afea53c30d9ec841d593651ab7ae252801f64c5 (patch)
treef0ec154c4c5ab94aac4e617ed32bdbadc65ce876 /src
parent74aa7e046e4a3927d506bc651261724539f67139 (diff)
downloadpostgresql-6afea53c30d9ec841d593651ab7ae252801f64c5.tar.gz
postgresql-6afea53c30d9ec841d593651ab7ae252801f64c5.zip
Fix typos in documentation and for one wait event
These have been found while cross-checking for the use of unique words in the documentation, and a wait event was not getting generated in a way consistent to what the documentation provided. Author: Alexander Lakhin Discussion: https://postgr.es/m/9b5a3a85-899a-ae62-dbab-1e7943aa5ab1@gmail.com
Diffstat (limited to 'src')
-rw-r--r--src/backend/postmaster/pgstat.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/postmaster/pgstat.c b/src/backend/postmaster/pgstat.c
index 15852fe24ff..b8bad60a305 100644
--- a/src/backend/postmaster/pgstat.c
+++ b/src/backend/postmaster/pgstat.c
@@ -3800,7 +3800,7 @@ pgstat_get_wait_io(WaitEventIO w)
event_name = "LockFileCreateSync";
break;
case WAIT_EVENT_LOCK_FILE_CREATE_WRITE:
- event_name = "LockFileCreateWRITE";
+ event_name = "LockFileCreateWrite";
break;
case WAIT_EVENT_LOCK_FILE_RECHECKDATADIR_READ:
event_name = "LockFileReCheckDataDirRead";