diff options
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 |