Skip to content

Commit 9ed5f67

Browse files
authored
Fixes a typo in debugging_exercises (#119)
1 parent b7d0599 commit 9ed5f67

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

ruby_basics/9_debugging/exercises/debugging_exercises.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# Type 'rspec' into the terminal to run Rspec
44
# Once this test fails, have a look at the Stack Trace
55
# Try to see if you can work your way from the last line, the bottom of the stack
6-
# To the top, the first line, where the error occured, and ONLY THEN fix the error
6+
# To the top, the first line, where the error occurred, and ONLY THEN fix the error
77

88
def decrement_smallest_value(nested_array)
99
smallest_value = nested_array.flatten.max

solutions/ruby_basics/9_debugging/exercises/debugging_exercises.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
# Type 'rspec' into the terminal to run Rspec
66
# Once this test fails, have a look at the Stack Trace
77
# Try to see if you can work your way from the last line, the bottom of the stack
8-
# To the top, the first line, where the error occured, and ONLY THEN fix the error
8+
# To the top, the first line, where the error occurred, and ONLY THEN fix the error
99

1010
def decrement_smallest_value(nested_array)
1111
smallest_value = nested_array.flatten.max

0 commit comments

Comments
 (0)