diff options
author | Robert Haas <rhaas@postgresql.org> | 2016-02-05 07:56:59 -0500 |
---|---|---|
committer | Robert Haas <rhaas@postgresql.org> | 2016-02-05 07:56:59 -0500 |
commit | 78bea62ab0b16a0c7aaa1e460064c32f9f35041d (patch) | |
tree | 4f33325d05cc49e3f93de3d99370ec3731eed54a /src | |
parent | 6819514fca22f8554edcab6e4d0402b0221f03bb (diff) | |
download | postgresql-78bea62ab0b16a0c7aaa1e460064c32f9f35041d.tar.gz postgresql-78bea62ab0b16a0c7aaa1e460064c32f9f35041d.zip |
Fix typo.
Amit Kapila
Diffstat (limited to 'src')
-rw-r--r-- | src/include/storage/lwlock.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/include/storage/lwlock.h b/src/include/storage/lwlock.h index b2bdbbaf1b9..2bbe1b61ae6 100644 --- a/src/include/storage/lwlock.h +++ b/src/include/storage/lwlock.h @@ -190,8 +190,8 @@ extern void InitLWLockAccess(void); /* * Extensions (or core code) can obtain an LWLocks by calling * RequestNamedLWLockTranche() during postmaster startup. Subsequently, - * call GetNamedLWLockTranche() and to obtain a pointer to an array - * containing the number of LWLocks requested. + * call GetNamedLWLockTranche() to obtain a pointer to an array containing + * the number of LWLocks requested. */ extern void RequestNamedLWLockTranche(const char *tranche_name, int num_lwlocks); extern LWLockPadded *GetNamedLWLockTranche(const char *tranche_name); |