Skip to content

Commit feb73f5

Browse files
committed
Fix typo: retreives -> retrieves
1 parent 3fd188f commit feb73f5

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

_parts/part4.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ describe 'database' do
2626
raw_output.split("\n")
2727
end
2828

29-
it 'inserts and retreives a row' do
29+
it 'inserts and retrieves a row' do
3030
result = run_script([
3131
"insert 1 user1 person1@example.com",
3232
"select",
@@ -404,7 +404,7 @@ And we added tests:
404404
+ raw_output.split("\n")
405405
+ end
406406
+
407-
+ it 'inserts and retreives a row' do
407+
+ it 'inserts and retrieves a row' do
408408
+ result = run_script([
409409
+ "insert 1 user1 person1@example.com",
410410
+ "select",

spec/main_spec.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ def run_script(commands)
2222
raw_output.split("\n")
2323
end
2424

25-
it 'inserts and retreives a row' do
25+
it 'inserts and retrieves a row' do
2626
result = run_script([
2727
"insert 1 user1 person1@example.com",
2828
"select",

0 commit comments

Comments
 (0)