| commit | 3b0ab4dfa16ac0dad477db836c60186955f15418 | [log] [tgz] |
|---|---|---|
| author | Dmytro Shteflyuk <kpumuk@kpumuk.info> | Wed Mar 11 17:46:48 2026 -0400 |
| committer | Jens Geyer <Jens-G@users.noreply.github.com> | Tue Mar 17 22:06:26 2026 +0100 |
| tree | 230b742e3a52b56d09c4e6beaf3ca68621a01a3a | |
| parent | dfeab8d57f41c8ca52269181a7be0092383d94ab [diff] [blame] |
Enforce consistent whitespaces around blocks, equal signs, and in parameters in Ruby code
diff --git a/tutorial/rb/RubyClient.rb b/tutorial/rb/RubyClient.rb index 9a5aa43..94ffdca 100755 --- a/tutorial/rb/RubyClient.rb +++ b/tutorial/rb/RubyClient.rb
@@ -38,10 +38,10 @@ client.ping() print "ping()\n" - sum = client.add(1,1) + sum = client.add(1, 1) print "1+1=", sum, "\n" - sum = client.add(1,4) + sum = client.add(1, 4) print "1+4=", sum, "\n" work = Work.new()