diff options
author | Michael Paquier <michael@paquier.xyz> | 2020-12-24 17:05:49 +0900 |
---|---|---|
committer | Michael Paquier <michael@paquier.xyz> | 2020-12-24 17:05:49 +0900 |
commit | 90fbf7c57df601c7e0b43ae7cf71f0f69908a7cc (patch) | |
tree | 3802395b538dc9b051e7ea65d3bc452a3ee9c904 /contrib/pg_stat_statements | |
parent | 6ecf488d91ceb93a8be907a24c5d8a90358534ed (diff) |
Fix typos and grammar in docs and comments
This fixes several areas of the documentation and some comments in
matters of style, grammar, or even format.
Author: Justin Pryzby
Discussion: https://postgr.es/m/20201222041153.GK30237@telsasoft.com
Diffstat (limited to 'contrib/pg_stat_statements')
-rw-r--r-- | contrib/pg_stat_statements/pg_stat_statements.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/pg_stat_statements/pg_stat_statements.c b/contrib/pg_stat_statements/pg_stat_statements.c index 00eeaf10576..196e1e21420 100644 --- a/contrib/pg_stat_statements/pg_stat_statements.c +++ b/contrib/pg_stat_statements/pg_stat_statements.c @@ -191,7 +191,7 @@ typedef struct Counters double usage; /* usage factor */ int64 wal_records; /* # of WAL records generated */ int64 wal_fpi; /* # of WAL full page images generated */ - uint64 wal_bytes; /* total amount of WAL bytes generated */ + uint64 wal_bytes; /* total amount of WAL generated in bytes */ } Counters; /* |