1
0
mirror of https://github.com/adambard/learnxinyminutes-docs.git synced 2025-08-19 13:02:14 +02:00

[Ruby/en] Fixed a typo

Merge pull request #3140 from arogachev/patch-1
This commit is contained in:
Andre Polykanine A.K.A. Menelion Elensúlë
2018-07-06 16:01:59 +03:00
committed by GitHub

View File

@@ -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