aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMichael Paquier <michael@paquier.xyz>2019-01-15 08:47:14 +0900
committerMichael Paquier <michael@paquier.xyz>2019-01-15 08:47:14 +0900
commit3607dd39ba3d31d30696acacaf76d4a97dbd842f (patch)
treed3e292a915325187a38e520d208937d627d18a14 /src
parentb3a5f01b75f765e0958118acb9f054d3dca3b23c (diff)
downloadpostgresql-3607dd39ba3d31d30696acacaf76d4a97dbd842f.tar.gz
postgresql-3607dd39ba3d31d30696acacaf76d4a97dbd842f.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 302c331c493..ac658dcb241 100644
--- a/src/backend/postmaster/pgstat.c
+++ b/src/backend/postmaster/pgstat.c
@@ -3745,7 +3745,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";