diff options
author | Andre Polykanine A.K.A. Menelion ElensĂșlĂ« <andre@oire.org> | 2018-07-06 16:01:59 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-07-06 16:01:59 +0300 |
commit | 0d211d341913305bd1d97e5d097898eb7faa1354 (patch) | |
tree | 21d82ab7eca68f3ecc94aae9731dc114dae7b2d8 | |
parent | d1cf36394b151d4e3ff97b27faf71a9504287c2d (diff) | |
parent | 1f4fea47fdf512f500d2ac01748ab691cf8c1cab (diff) |
[Ruby/en] Fixed a typo
Merge pull request #3140 from arogachev/patch-1
-rw-r--r-- | ruby.html.markdown | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ruby.html.markdown b/ruby.html.markdown index bbc8c558..4bc872da 100644 --- a/ruby.html.markdown +++ b/ruby.html.markdown @@ -413,7 +413,7 @@ end # Destructuring -# Ruby will automatically destrucure arrays on assignment to multiple variables: +# Ruby will automatically destructure arrays on assignment to multiple variables: a, b, c = [1, 2, 3] a #=> 1 b #=> 2 |