From Jason Turner

[vector.cons]

Diff to HTML by rtfpessoa

tmp/tmpgsvyxgj9/{from.md → to.md} RENAMED
@@ -40,9 +40,9 @@ template <class InputIterator>
40
  *Effects:* Constructs a `vector` equal to the range \[`first`, `last`),
41
  using the specified allocator.
42
 
43
  *Complexity:* Makes only N calls to the copy constructor of `T` (where N
44
  is the distance between `first` and `last`) and no reallocations if
45
- iterators first and last are of forward, bidirectional, or random access
46
- categories. It makes order `N` calls to the copy constructor of `T` and
47
- order log(N) reallocations if they are just input iterators.
48
 
 
40
  *Effects:* Constructs a `vector` equal to the range \[`first`, `last`),
41
  using the specified allocator.
42
 
43
  *Complexity:* Makes only N calls to the copy constructor of `T` (where N
44
  is the distance between `first` and `last`) and no reallocations if
45
+ iterators `first` and `last` are of forward, bidirectional, or random
46
+ access categories. It makes order `N` calls to the copy constructor of
47
+ `T` and order log N reallocations if they are just input iterators.
48