From 930432606c120bce1c2bfcb0a0ebb940cc5e4519 Mon Sep 17 00:00:00 2001 From: jbranchaud Date: Tue, 14 Jun 2016 21:23:46 -0500 Subject: [PATCH] Fix a typo in the latest til --- ruby/require-entire-gemfile-in-pry-session.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ruby/require-entire-gemfile-in-pry-session.md b/ruby/require-entire-gemfile-in-pry-session.md index 6c8dec9..ee2949c 100644 --- a/ruby/require-entire-gemfile-in-pry-session.md +++ b/ruby/require-entire-gemfile-in-pry-session.md @@ -4,7 +4,7 @@ Want to experiment in a pry session with some of the gems in your project's `Gemfile`? You can quickly require all the gems for your project using Bundler's `#require` method. -Just require `bundler` itself and then execute `Bundler.requie`. Everything +Just require `bundler` itself and then execute `Bundler.require`. Everything will be loaded in. ```ruby