summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorMasato Yamashita <4653960+M-Yamashita01@users.noreply.github.com>2021-07-21 05:56:48 +0900
committerMasato Yamashita <4653960+M-Yamashita01@users.noreply.github.com>2021-07-22 06:20:03 +0900
commit87456bccf1487c21026c0f820a4a12e8ef811063 (patch)
tree13797e29172dad887edc12943211bde2c70d4806 /lib
parentca2b3e9167287be3856217f052133be66d98db43 (diff)
downloadpry-87456bccf1487c21026c0f820a4a12e8ef811063.tar.gz
Fix typo in comment.
Diffstat (limited to 'lib')
-rw-r--r--lib/pry/core_extensions.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/pry/core_extensions.rb b/lib/pry/core_extensions.rb
index e5063a05..c109e95a 100644
--- a/lib/pry/core_extensions.rb
+++ b/lib/pry/core_extensions.rb
@@ -78,7 +78,7 @@ class Object
# Module.new.class_eval("binding") has different behaviour than CRuby,
# where this is not needed: class_eval("binding") vs class_eval{binding}.
# Using a block works around the difference of behaviour on JRuby.
- # The scope is clear of local variabless. Don't add any.
+ # The scope is clear of local variables. Don't add any.
#
# This fixes the following two spec failures, at https://travis-ci.org/pry/pry/jobs/274470002
# 1) ./spec/pry_spec.rb:360:in `block in (root)'