diff options
author | root <root@learnxinyminutes.com> | 2018-07-15 04:44:51 +0000 |
---|---|---|
committer | root <root@learnxinyminutes.com> | 2018-07-15 04:44:51 +0000 |
commit | 40de8820dbf8a4695d31384aca69c85a4e34d066 (patch) | |
tree | ceb5234de679c72a0f71af6b9da9f1ca893a73cf /ruby.html.markdown | |
parent | d2fb2730e6abcfc3db04ad4f72c3592243eda100 (diff) | |
parent | 0d211d341913305bd1d97e5d097898eb7faa1354 (diff) |
Merge branch 'master' of https://github.com/adambard/learnxinyminutes-docs
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 |