From 6a43b4d61ebf5194aeef822a06ae33082be11000 Mon Sep 17 00:00:00 2001 From: alavia Date: Wed, 20 Mar 2019 04:39:57 -0400 Subject: [PATCH] Fix a couple of misspelled words. (#34055) --- guide/english/ruby/common-array-methods/index.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/guide/english/ruby/common-array-methods/index.md b/guide/english/ruby/common-array-methods/index.md index 920a010d20..20c495a910 100644 --- a/guide/english/ruby/common-array-methods/index.md +++ b/guide/english/ruby/common-array-methods/index.md @@ -72,7 +72,7 @@ array[5] ``` #### .pop -The .pop method will permantently remove the last element of an array and return this element: +The .pop method will permanently remove the last element of an array and return this element: ``` ruby array.pop @@ -80,7 +80,7 @@ array.pop ``` #### .shift -The .shift method will permantently remove the first element of an array and return this element: +The .shift method will permanently remove the first element of an array and return this element: ``` ruby array.shift