From 1f4fea47fdf512f500d2ac01748ab691cf8c1cab Mon Sep 17 00:00:00 2001
From: Alexey Rogachev <arogachev90@gmail.com>
Date: Sat, 16 Jun 2018 21:10:19 +0600
Subject: [PATCH] Fixed a typo

---
 ruby.html.markdown | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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