Why is this an issue?

For better readability, do not put more than one statement on a single line.

Noncompliant code example

if someCondition; puts "hello"; end

Compliant solution

if someCondition
  puts "hello"
end