Ruby

Ruby

Made by DeepSource

Mismatch between specified and passed format params RB-LI1025

Bug risk
Major

The parameters supplied for formatting the string do not match the specified parameters.

Bad practice

format('A value: %s and another: %i', a_value)

Recommended

format('A value: %s and another: %i', a_value, another_value)