Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

small discrepancies in guide #467

Merged
merged 3 commits into from
Jun 12, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
12 changes: 6 additions & 6 deletions GUIDE.md
Original file line number Diff line number Diff line change
Expand Up @@ -69,12 +69,12 @@ Now let us step through the program.
5: tri = 0
6:
7: 0.upto(n) { |i| tri += i }
9: end
10:
11: tri
12: end
13:
=> 14: triangle(3)
8:
9: tri
10: end
11:
=> 12: t = triangle(3)
13: puts t
(byebug) <RET> # hit enter

[1, 10] in /path/to/triangle.rb
Expand Down