From: Robert Haas Date: Fri, 2 Aug 2013 13:15:42 +0000 (-0400) Subject: Fix typo in comment. X-Git-Tag: REL9_4_BETA1~1244 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=05ee328d66b700832cff61f59894ced7878fbfdb;p=postgresql Fix typo in comment. Etsuro Fujita --- diff --git a/src/backend/storage/buffer/bufmgr.c b/src/backend/storage/buffer/bufmgr.c index 8079226864..f848391811 100644 --- a/src/backend/storage/buffer/bufmgr.c +++ b/src/backend/storage/buffer/bufmgr.c @@ -2221,7 +2221,7 @@ DropRelFileNodesAllBuffers(RelFileNodeBackend *rnodes, int nnodes) /* * For low number of relations to drop just use a simple walk through, to * save the bsearch overhead. The threshold to use is rather a guess than - * a exactly determined value, as it depends on many factors (CPU and RAM + * an exactly determined value, as it depends on many factors (CPU and RAM * speeds, amount of shared buffers etc.). */ use_bsearch = n > DROP_RELS_BSEARCH_THRESHOLD;