From 3d694d7ffd43069abee1980354f5ad48e8b43ef5 Mon Sep 17 00:00:00 2001 From: Sergei Mellow Date: Tue, 23 Oct 2018 15:09:26 -0400 Subject: [PATCH] added missing closing tag for code snippet (#25673) --- guide/english/ruby/common-array-methods/index.md | 1 + 1 file changed, 1 insertion(+) diff --git a/guide/english/ruby/common-array-methods/index.md b/guide/english/ruby/common-array-methods/index.md index e24d80e0f73..c94bdde87f4 100644 --- a/guide/english/ruby/common-array-methods/index.md +++ b/guide/english/ruby/common-array-methods/index.md @@ -148,6 +148,7 @@ array = [1, 2, 3, 4, 5] => [1, 2, 3, 4, 5] array.include?(3) => true +``` #### .flatten The flatten method can be used to take an array that contains nested arrays and create a one-dimensional array: