From 84cd6266d086276dcd1d620ac5243b4aa8579eee Mon Sep 17 00:00:00 2001 From: X_AJ_X <88792057+XAJX179@users.noreply.github.com> Date: Mon, 26 Aug 2024 12:00:44 +0530 Subject: [PATCH] (Basic Enumerable Methods) Chore: Fix Markdownlint Errors (#28703) --- ruby/basic_ruby/basic_enumerable_methods.md | 1 + 1 file changed, 1 insertion(+) diff --git a/ruby/basic_ruby/basic_enumerable_methods.md b/ruby/basic_ruby/basic_enumerable_methods.md index e4d9b0917ef..864ecd78204 100644 --- a/ruby/basic_ruby/basic_enumerable_methods.md +++ b/ruby/basic_ruby/basic_enumerable_methods.md @@ -116,6 +116,7 @@ my_hash.each { |key, value| puts "#{key} is #{value}" } #=> two is 2 #=> { "one" => 1, "two" => 2} ``` + ```ruby my_hash.each { |pair| puts "the pair is #{pair}" }