aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobert Haas <rhaas@postgresql.org>2017-11-30 16:22:38 -0500
committerRobert Haas <rhaas@postgresql.org>2017-11-30 16:22:38 -0500
commit06ae669c9229270663d6c4953ceb3621e4bc2d5b (patch)
tree126397a21a05ee341831785490fe7a3bd8106152
parente4128ee767df3c8c715eb08f8977647ae49dfb59 (diff)
downloadpostgresql-06ae669c9229270663d6c4953ceb3621e4bc2d5b.tar.gz
postgresql-06ae669c9229270663d6c4953ceb3621e4bc2d5b.zip
Remove extra word from comment.
David Rowley, who also was the primary author of the patch that added this function; the attribution in my previous commit, 84940644de931f331433b35e3a391822671f8c9c, was incorrect due to sloppiness on my part. Discussion: http://postgr.es/m/CAKJS1f_0iSiLQsf_c06AzOWAc3eS6ePjjVQFpcFv3W-O5aktnQ@mail.gmail.com
-rw-r--r--src/backend/nodes/bitmapset.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/nodes/bitmapset.c b/src/backend/nodes/bitmapset.c
index e5096e01a79..ae30072a015 100644
--- a/src/backend/nodes/bitmapset.c
+++ b/src/backend/nodes/bitmapset.c
@@ -789,8 +789,8 @@ bms_add_members(Bitmapset *a, const Bitmapset *b)
* Add members in the range of 'lower' to 'upper' to the set.
*
* Note this could also be done by calling bms_add_member in a loop, however,
- * using this function will be faster when the range is large as we work with
- * at the bitmapword level rather than at bit level.
+ * using this function will be faster when the range is large as we work at
+ * the bitmapword level rather than at bit level.
*/
Bitmapset *
bms_add_range(Bitmapset *a, int lower, int upper)