summaryrefslogtreecommitdiffhomepage
path: root/ruby.html.markdown
diff options
context:
space:
mode:
authorroot <root@learnxinyminutes.com>2018-07-15 04:44:51 +0000
committerroot <root@learnxinyminutes.com>2018-07-15 04:44:51 +0000
commit40de8820dbf8a4695d31384aca69c85a4e34d066 (patch)
treeceb5234de679c72a0f71af6b9da9f1ca893a73cf /ruby.html.markdown
parentd2fb2730e6abcfc3db04ad4f72c3592243eda100 (diff)
parent0d211d341913305bd1d97e5d097898eb7faa1354 (diff)
Merge branch 'master' of https://github.com/adambard/learnxinyminutes-docs
Diffstat (limited to 'ruby.html.markdown')
-rw-r--r--ruby.html.markdown2
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