The YARD comment on lib/baza-rb.rb:65 documents the retries: keyword argument of BazaRb#initialize as (default: 3), but the constructor signature on lib/baza-rb.rb:69 declares retries: 5. The doc and the code disagree, so a caller relying on the documented value computes the wrong total retry budget — five attempts instead of three — and any tooling that surfaces the constructor's defaults from the docs will be off by two.
The fix is a one-line edit: change (default: 3) on line 65 to (default: 5) so the YARD doc agrees with the actual keyword default on line 69.
The YARD comment on
lib/baza-rb.rb:65documents theretries:keyword argument ofBazaRb#initializeas(default: 3), but the constructor signature onlib/baza-rb.rb:69declaresretries: 5. The doc and the code disagree, so a caller relying on the documented value computes the wrong total retry budget — five attempts instead of three — and any tooling that surfaces the constructor's defaults from the docs will be off by two.The fix is a one-line edit: change
(default: 3)on line 65 to(default: 5)so the YARD doc agrees with the actual keyword default on line 69.