diff --git a/guide/english/ruby/ruby-for-loop/index.md b/guide/english/ruby/ruby-for-loop/index.md index fabbb17388..7a1c82c715 100644 --- a/guide/english/ruby/ruby-for-loop/index.md +++ b/guide/english/ruby/ruby-for-loop/index.md @@ -4,9 +4,9 @@ title: Ruby For Loops ## Ruby For Loops -Ruby for loops are used to loop or iterate over a number of elements and execute of block of code for each element. For loops are often used on arrays. See section on Ruby Arrays. +Ruby `for` loops are used to loop or iterate over a number of elements and execute a block of code for each element. For loops are often used on arrays. See section on Ruby Arrays. -For loops are merely one example of looping or iterating over elements. Below is an example of a for loop: +The `for` loop is merely one example of looping or iterating over elements. Below is an example of a for loop: ``` for element in array do