diff options
author | Heikki Linnakangas <heikki.linnakangas@iki.fi> | 2013-02-20 12:30:59 +0200 |
---|---|---|
committer | Heikki Linnakangas <heikki.linnakangas@iki.fi> | 2013-02-20 12:31:26 +0200 |
commit | 5d6899dbae7ac19d90f135e2ad64832e4ca8d064 (patch) | |
tree | 1ca046c39e1f152a257f795cf54d2c612ca08a88 /src | |
parent | a40d09e27fefbeca0d6994471b3e6965f1ac9dda (diff) | |
download | postgresql-5d6899dbae7ac19d90f135e2ad64832e4ca8d064.tar.gz postgresql-5d6899dbae7ac19d90f135e2ad64832e4ca8d064.zip |
Fix yet another typo in comment.
Etsuro Fujita
Diffstat (limited to 'src')
-rw-r--r-- | src/backend/storage/file/fd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/storage/file/fd.c b/src/backend/storage/file/fd.c index 6346cd154ca..ff7e221cde9 100644 --- a/src/backend/storage/file/fd.c +++ b/src/backend/storage/file/fd.c @@ -43,7 +43,7 @@ * fopen(3), opendir(3), and open(2), respectively. They behave like the * corresponding native functions, except that the handle is registered with * the current subtransaction, and will be automatically closed at abort. - * These are intended for short operations like reading a configuration file. + * These are intended for short operations like reading a configuration file, * and there is a fixed limit on the number of files that can be opened using * these functions at any one time. * |