Skip to content

Commit

Permalink
Update 04-load_path.md
Browse files Browse the repository at this point in the history
Substitute "require" for "ruby" because it looked like a mistake to me :)
  • Loading branch information
ariaru committed May 17, 2015
1 parent 5d6a38e commit db60c74
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/02-libraries/04-load_path.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ starts your program. `puts` is smart enough to put each string in that array
on a separate line.

Each of these lines represents a directory on your computer where Ruby files
are stored. If you use `require` anywhere in your application (e.g. `ruby
are stored. If you use `require` anywhere in your application (e.g. `require
"digest"`) then Ruby will look for a Ruby file with the same name (e.g.
`digest.rb`) in each of these directories. It will load the first file with
this name that it can find.
Expand Down

0 comments on commit db60c74

Please sign in to comment.