From 2974c2a1fc10eeec15446f3e28f5fe56ef3aad45 Mon Sep 17 00:00:00 2001 From: jbranchaud Date: Sat, 25 Jul 2015 22:24:34 -0500 Subject: [PATCH] Add some clarification to the latest til. --- ruby/listing-local-variables.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ruby/listing-local-variables.md b/ruby/listing-local-variables.md index ae54650..4cb6a32 100644 --- a/ruby/listing-local-variables.md +++ b/ruby/listing-local-variables.md @@ -2,7 +2,7 @@ In Ruby 2.2, the `binding` object gives us access to a method `#local_variables` which returns the symbol names of the binding's local -variables. +variables. We can see this in action with ```ruby def square(x)