Picks up two elements at a time, a larger and a smaller, and inserts both into the sorted region in a single backward scan, placing the larger first and then continuing the scan to place the smaller.
The smaller element always terminates the backward scan before or at the point where the larger stopped, so the combined scan is shorter than two independent insertions, roughly halving total comparisons.