Skip to content
Open

Done #2200

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion lib/a_division_by_zero_error.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
42 / 6

42 / 0
42 / 2
2 changes: 1 addition & 1 deletion lib/a_name_error.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
"hello world"

hello_world
"hello_world"
2 changes: 1 addition & 1 deletion lib/a_syntax_error.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
x = 1

x =
x = 2
2 changes: 1 addition & 1 deletion lib/a_type_error.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
1 + 1

1 + "is the loneliest number"
"1" + "is the loneliest number"