alloc-pool.c: Fix comment formatting.
[gcc.git] / gcc / bitmap.c
index 98229d598153b80d01090efb5d075aab8fa2e037..619c713a2c872fd045a17fa4a0e6f9624932da4f 100644 (file)
@@ -265,7 +265,7 @@ bitmap_copy (bitmap to, bitmap from)
 
   bitmap_clear (to);
 
-  /* Copy elements in forward direction one at a time */
+  /* Copy elements in forward direction one at a time */
   for (from_ptr = from->first; from_ptr; from_ptr = from_ptr->next)
     {
       bitmap_element *to_elt = bitmap_element_allocate (to);