diff options
author | Robert Haas <rhaas@postgresql.org> | 2017-11-07 16:34:48 -0500 |
---|---|---|
committer | Robert Haas <rhaas@postgresql.org> | 2017-11-07 16:34:48 -0500 |
commit | 698e5254377baffb95774d47872100997f135cba (patch) | |
tree | a36eaa329a1d40ec64065b9476116e251597ba44 | |
parent | 92a1834dd88e56e823ac6641313a2f077a8af72e (diff) | |
download | postgresql-698e5254377baffb95774d47872100997f135cba.tar.gz postgresql-698e5254377baffb95774d47872100997f135cba.zip |
Fix typo in comment.
Masahiko Sawada
Discussion: http://postgr.es/m/CAD21AoDrf5AOpZ-mX-j6O=zFNFfKaTdHkv3o1X2eSs2nBXALug@mail.gmail.com
-rw-r--r-- | src/backend/storage/ipc/dsm_impl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/storage/ipc/dsm_impl.c b/src/backend/storage/ipc/dsm_impl.c index b18bea64c6c..6c4e60b0b02 100644 --- a/src/backend/storage/ipc/dsm_impl.c +++ b/src/backend/storage/ipc/dsm_impl.c @@ -682,7 +682,7 @@ dsm_impl_windows(dsm_op op, dsm_handle handle, Size request_size, /* * Handle teardown cases. Since Windows automatically destroys the object - * when no references reamin, we can treat it the same as detach. + * when no references remain, we can treat it the same as detach. */ if (op == DSM_OP_DETACH || op == DSM_OP_DESTROY) { |