diff options
author | Michael Paquier <michael@paquier.xyz> | 2023-10-24 08:05:29 +0900 |
---|---|---|
committer | Michael Paquier <michael@paquier.xyz> | 2023-10-24 08:05:29 +0900 |
commit | 9972c7de1d078d30434c16081fe0624ee3d24a61 (patch) | |
tree | 87565dfcfcf484ffc95a157ebaa04b5737c0e539 /src | |
parent | 5b36e8f078a3c68fd1c530c59c4ed961c15c7ab4 (diff) | |
download | postgresql-9972c7de1d078d30434c16081fe0624ee3d24a61.tar.gz postgresql-9972c7de1d078d30434c16081fe0624ee3d24a61.zip |
Fix typos in wait_event.c
Noticed while working on a different patch. Introduced in af720b4c50a1.
Diffstat (limited to 'src')
-rw-r--r-- | src/backend/utils/activity/wait_event.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/utils/activity/wait_event.c b/src/backend/utils/activity/wait_event.c index 4e112560da1..baef91928f7 100644 --- a/src/backend/utils/activity/wait_event.c +++ b/src/backend/utils/activity/wait_event.c @@ -56,9 +56,9 @@ uint32 *my_wait_event_info = &local_my_wait_event_info; * It is used to ensure that no duplicated entries are registered. * * The size of the hash table is based on the assumption that - * WAIT_EVENT_EXTENSION_BASH_INIT_SIZE is enough for most cases, and it seems + * WAIT_EVENT_EXTENSION_HASH_INIT_SIZE is enough for most cases, and it seems * unlikely that the number of entries will reach - * WAIT_EVENT_EXTENSION_BASH_MAX_SIZE. + * WAIT_EVENT_EXTENSION_HASH_MAX_SIZE. */ static HTAB *WaitEventExtensionHashById; /* find names from IDs */ static HTAB *WaitEventExtensionHashByName; /* find IDs from names */ |