1
0
Fork 0
mirror of https://github.com/pry/pry.git synced 2022-11-09 12:35:05 -05:00

method: amend backticks to avoid confusion

The confusion is that some users think that it's a shell command, rather
than a Pry command (see: https://github.com/pry/pry/pull/1350)
This commit is contained in:
Kyrylo Silin 2015-02-28 07:15:13 +02:00
parent 02f74933a4
commit 84b30eb894

View file

@ -484,7 +484,7 @@ class Pry
else
fail_msg = "Cannot locate this method: #{name}."
if mri?
fail_msg += ' Try `gem-install pry-doc` to get access to Ruby Core documentation.'
fail_msg += " Try 'gem-install pry-doc' to get access to Ruby Core documentation."
end
raise CommandError, fail_msg
end