diff options
author | Peter Eisentraut | 2016-09-21 16:00:00 +0000 |
---|---|---|
committer | Peter Eisentraut | 2016-09-21 16:00:00 +0000 |
commit | c91b34bab19bdc4fca4de37cd37c8a4e79dae4d0 (patch) | |
tree | 7b895d77d1f1df6a8ae843f5ac3eb6cae00bffad | |
parent | 60270e5e00850ee8cc34296e38d0000415c8b152 (diff) |
Fix typo
From: Michael Paquier <[email protected]>
-rw-r--r-- | src/include/pgstat.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/include/pgstat.h b/src/include/pgstat.h index dc3320d091..0c98c59e72 100644 --- a/src/include/pgstat.h +++ b/src/include/pgstat.h @@ -1007,9 +1007,9 @@ extern void pgstat_initstats(Relation rel); * * Called from places where server process needs to wait. This is called * to report wait event information. The wait information is stored - * as 4-bytes where first byte repersents the wait event class (type of + * as 4-bytes where first byte represents the wait event class (type of * wait, for different types of wait, refer WaitClass) and the next - * 3-bytes repersent the actual wait event. Currently 2-bytes are used + * 3-bytes represent the actual wait event. Currently 2-bytes are used * for wait event which is sufficient for current usage, 1-byte is * reserved for future usage. * |