diff options
author | Michael Paquier <michael@paquier.xyz> | 2019-06-03 13:44:03 +0900 |
---|---|---|
committer | Michael Paquier <michael@paquier.xyz> | 2019-06-03 13:44:03 +0900 |
commit | 1fb6f62a84041b668fd9e85a2f33bb3a0fd28fdc (patch) | |
tree | bcf6bac3dc4d8e1ce07b6d883b0e30990025f834 /src/backend/storage/ipc | |
parent | 0240a00fbd4fd14f577edf8d36a032237fd0b9cb (diff) |
Fix typos in various places
Author: Andrea Gelmini
Reviewed-by: Michael Paquier, Justin Pryzby
Discussion: https://postgr.es/m/20190528181718.GA39034@glet
Diffstat (limited to 'src/backend/storage/ipc')
-rw-r--r-- | src/backend/storage/ipc/standby.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/storage/ipc/standby.c b/src/backend/storage/ipc/standby.c index 842fcabd979..25b7e314afc 100644 --- a/src/backend/storage/ipc/standby.c +++ b/src/backend/storage/ipc/standby.c @@ -202,7 +202,7 @@ WaitExceedsMaxStandbyDelay(void) /* * Progressively increase the sleep times, but not to more than 1s, since - * pg_usleep isn't interruptable on some platforms. + * pg_usleep isn't interruptible on some platforms. */ standbyWait_us *= 2; if (standbyWait_us > 1000000) |