From cc84d010fd6aeb7900256f427722d8d273bf4902 Mon Sep 17 00:00:00 2001 From: Giuseppe Varriale <33101358+GiuseppeVarriale@users.noreply.github.com> Date: Thu, 8 Nov 2018 10:54:19 -0200 Subject: [PATCH] Fixed pop method description (#21254) --- guide/english/ruby/common-array-methods/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/guide/english/ruby/common-array-methods/index.md b/guide/english/ruby/common-array-methods/index.md index c94bdde87f..057d3ce379 100644 --- a/guide/english/ruby/common-array-methods/index.md +++ b/guide/english/ruby/common-array-methods/index.md @@ -73,7 +73,7 @@ array[5] ``` #### .pop -The .pop method will permantently remove the last element of an array: +The .pop method will permantently remove the last element of an array and return this element: ``` ruby array.pop