summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorAlexey Rogachev <arogachev90@gmail.com>2018-06-16 21:10:19 +0600
committerGitHub <noreply@github.com>2018-06-16 21:10:19 +0600
commit1f4fea47fdf512f500d2ac01748ab691cf8c1cab (patch)
tree7f037a9edf53bb06b4613732dbdee8315f34ce62
parenta5f04d7e5350274a68bcec7361e4b7beefcf7829 (diff)
Fixed a typo
-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