diff options
author | Alexey Rogachev <arogachev90@gmail.com> | 2018-06-16 21:10:19 +0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-06-16 21:10:19 +0600 |
commit | 1f4fea47fdf512f500d2ac01748ab691cf8c1cab (patch) | |
tree | 7f037a9edf53bb06b4613732dbdee8315f34ce62 /ruby.html.markdown | |
parent | a5f04d7e5350274a68bcec7361e4b7beefcf7829 (diff) |
Fixed a typo
Diffstat (limited to 'ruby.html.markdown')
-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 |