diff options
author | Magnus Hagander <magnus@hagander.net> | 2013-02-08 11:45:42 +0100 |
---|---|---|
committer | Magnus Hagander <magnus@hagander.net> | 2013-02-08 11:45:42 +0100 |
commit | 733701d2748b6bbbe5f3cdc6421fdc83f6aa0c01 (patch) | |
tree | c64200fc9d65150a834f3ca1b37301c646cce3f9 /src | |
parent | 858ef718ba6301b24e245bbe3ecf20aa10cb60a4 (diff) | |
download | postgresql-733701d2748b6bbbe5f3cdc6421fdc83f6aa0c01.tar.gz postgresql-733701d2748b6bbbe5f3cdc6421fdc83f6aa0c01.zip |
Fix typo in comment
Etsuro Fujita
Diffstat (limited to 'src')
-rw-r--r-- | src/backend/storage/file/fd.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/storage/file/fd.c b/src/backend/storage/file/fd.c index c02673130e4..70e3560b73b 100644 --- a/src/backend/storage/file/fd.c +++ b/src/backend/storage/file/fd.c @@ -44,8 +44,8 @@ * 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. - * and there is a fixed limit on the number files that can be open using these - * functions at any one time. + * and there is a fixed limit on the number of files that can be opened using + * these functions at any one time. * * Finally, BasicOpenFile is a just thin wrapper around open() that can * release file descriptors in use by the virtual file descriptors if |