max_pairs was used to limit pos_pairs and neg_pairs, but that results in 2 * max_pairs being created. This fixes that by placing a // 2 over max_pairs.
The docs for this PR live here. All of your documentation changes will be reflected on that endpoint. The docs are available until 30 days after the last update.
Hello!
Pull Request overview
Details
max_pairs
was used to limit pos_pairs and neg_pairs, but that results in2 * max_pairs
being created. This fixes that by placing a// 2
over max_pairs.