# 1 | |
Foo.bar( | |
:one => 1, | |
:two => 2 | |
) | |
# 2 | |
Foo.bar( | |
:one => 1, | |
:two => 2) | |
# ... |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
# 1 | |
Foo.bar( | |
:one => 1, | |
:two => 2 | |
) | |
# 2 | |
Foo.bar( | |
:one => 1, | |
:two => 2) | |
# ... |