Skip to content

Commit 7103f9c

Browse files
committed
Fix typo
1 parent 2475e50 commit 7103f9c

File tree

7 files changed

+10
-7
lines changed

7 files changed

+10
-7
lines changed

ch1/Monolith/mythoughts/thoughts/fixtures/thoughts.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"pk": 1,
55
"fields": {
66
"username": "bruce",
7-
"text": "A few seconds more and we'll know wether we have succeeded or not!",
7+
"text": "A few seconds more and we'll know whether we have succeeded or not!",
88
"timestamp": "1962-05-11 09:53:41Z"
99
}
1010
},

ch10/microservices/frontend/mythoughts/thoughts/fixtures/thoughts.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"pk": 1,
55
"fields": {
66
"username": "bruce",
7-
"text": "A few seconds more and we'll know wether we have succeeded or not!",
7+
"text": "A few seconds more and we'll know whether we have succeeded or not!",
88
"timestamp": "1962-05-11 09:53:41Z"
99
}
1010
},

ch10/microservices/thoughts_backend/ThoughtsBackend/load_test_data.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,8 @@
1010
test_data = [
1111
# username, timestamp, text
1212
('bruce', "1962-05-11 09:53:41Z",
13-
"A few seconds more and we'll know wether we have succeeded or not!"),
13+
"A few seconds more and we'll know whether we have "
14+
"succeeded or not!"),
1415
('bruce', "1962-05-11 09:58:23Z",
1516
"And now, if you'll excuse me, it's time for the final countdown"),
1617
('bruce', "1962-05-11 10:07:13Z",

ch11/microservices/frontend/mythoughts/thoughts/fixtures/thoughts.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"pk": 1,
55
"fields": {
66
"username": "bruce",
7-
"text": "A few seconds more and we'll know wether we have succeeded or not!",
7+
"text": "A few seconds more and we'll know whether we have succeeded or not!",
88
"timestamp": "1962-05-11 09:53:41Z"
99
}
1010
},

ch11/microservices/thoughts_backend/ThoughtsBackend/load_test_data.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,8 @@
1010
test_data = [
1111
# username, timestamp, text
1212
('bruce', "1962-05-11 09:53:41Z",
13-
"A few seconds more and we'll know wether we have succeeded or not!"),
13+
"A few seconds more and we'll know whether we have"
14+
" succeeded or not!"),
1415
('bruce', "1962-05-11 09:58:23Z",
1516
"And now, if you'll excuse me, it's time for the final countdown"),
1617
('bruce', "1962-05-11 10:07:13Z",

ch6/frontend/mythoughts/thoughts/fixtures/thoughts.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"pk": 1,
55
"fields": {
66
"username": "bruce",
7-
"text": "A few seconds more and we'll know wether we have succeeded or not!",
7+
"text": "A few seconds more and we'll know whether we have succeeded or not!",
88
"timestamp": "1962-05-11 09:53:41Z"
99
}
1010
},

ch6/thoughts_backend/ThoughtsBackend/load_test_data.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,8 @@
1010
test_data = [
1111
# username, timestamp, text
1212
('bruce', "1962-05-11 09:53:41Z",
13-
"A few seconds more and we'll know wether we have succeeded or not!"),
13+
"A few seconds more and we'll know whether we have "
14+
"succeeded or not!"),
1415
('bruce', "1962-05-11 09:58:23Z",
1516
"And now, if you'll excuse me, it's time for the final countdown"),
1617
('bruce', "1962-05-11 10:07:13Z",

0 commit comments

Comments
 (0)