From 4a781f1e6cf3be5ca84f09804f7d7c3a2180210b Mon Sep 17 00:00:00 2001 From: Heikki Linnakangas Date: Wed, 23 Apr 2014 13:00:08 +0300 Subject: [PATCH] Fix typo, trance -> tranche, in docs. Amit Langote --- doc/src/sgml/monitoring.sgml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/doc/src/sgml/monitoring.sgml b/doc/src/sgml/monitoring.sgml index 958acc4fd1..ffdf0c53e9 100644 --- a/doc/src/sgml/monitoring.sgml +++ b/doc/src/sgml/monitoring.sgml @@ -2300,7 +2300,7 @@ SELECT pg_stat_get_backend_pid(s.backendid) AS pid, (char *, int, LWLockMode) Probe that fires when an LWLock has been acquired. arg0 is the LWLock's tranche. - arg1 is the LWLock's offset within its trance. + arg1 is the LWLock's offset within its tranche. arg2 is the requested lock mode, either exclusive or shared. @@ -2309,7 +2309,7 @@ SELECT pg_stat_get_backend_pid(s.backendid) AS pid, Probe that fires when an LWLock has been released (but note that any released waiters have not yet been awakened). arg0 is the LWLock's tranche. - arg1 is the LWLock's offset within its trance. + arg1 is the LWLock's offset within its tranche. lwlock-wait-start @@ -2317,7 +2317,7 @@ SELECT pg_stat_get_backend_pid(s.backendid) AS pid, Probe that fires when an LWLock was not immediately available and a server process has begun to wait for the lock to become available. arg0 is the LWLock's tranche. - arg1 is the LWLock's offset within its trance. + arg1 is the LWLock's offset within its tranche. arg2 is the requested lock mode, either exclusive or shared. @@ -2326,7 +2326,7 @@ SELECT pg_stat_get_backend_pid(s.backendid) AS pid, Probe that fires when a server process has been released from its wait for an LWLock (it does not actually have the lock yet). arg0 is the LWLock's tranche. - arg1 is the LWLock's offset within its trance. + arg1 is the LWLock's offset within its tranche. arg2 is the requested lock mode, either exclusive or shared. @@ -2335,7 +2335,7 @@ SELECT pg_stat_get_backend_pid(s.backendid) AS pid, Probe that fires when an LWLock was successfully acquired when the caller specified no waiting. arg0 is the LWLock's tranche. - arg1 is the LWLock's offset within its trance. + arg1 is the LWLock's offset within its tranche. arg2 is the requested lock mode, either exclusive or shared. @@ -2344,7 +2344,7 @@ SELECT pg_stat_get_backend_pid(s.backendid) AS pid, Probe that fires when an LWLock was not successfully acquired when the caller specified no waiting. arg0 is the LWLock's tranche. - arg1 is the LWLock's offset within its trance. + arg1 is the LWLock's offset within its tranche. arg2 is the requested lock mode, either exclusive or shared.