From: Robert Haas Date: Fri, 5 Feb 2016 12:56:59 +0000 (-0500) Subject: Fix typo. X-Git-Tag: REL9_6_BETA1~762 X-Git-Url: http://git.postgresql.org/gitweb/?a=commitdiff_plain;h=78bea62ab0b16a0c7aaa1e460064c32f9f35041d;p=postgresql.git Fix typo. Amit Kapila --- 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);