Skip to content

Commit 6986985

Browse files
committed
Fix typo
1 parent 489fc27 commit 6986985

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/exercises/09-objects-exercises.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -259,7 +259,7 @@ The following lines should help test if your function works correctly. They shou
259259

260260
process.stdout.write('\n*9·41.\n');
261261
/*
262-
*9·41. Create a function called 'anyDebt' that takes an account (object with multiple bank account balances) and returns true if any of the balances is negative.
262+
*9·41. Create a function called 'anyDebt' that takes an account (object with multiple bank account balances) and returns true if any of the balances are negative.
263263
264264
The following lines should help test if your function works correctly. They should print true.
265265
*/

src/exercises/09-objects-solutions.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -351,7 +351,7 @@ console.log(!validFarmAnimal({age: 1, species: 'chicken', name: 'Betty Boo'}));
351351

352352
process.stdout.write('\n*9·41.\n');
353353
/*
354-
*9·41. Create a function called 'anyDebt' that takes an account (object with multiple bank account balances) and returns true if any of the balances is negative.
354+
*9·41. Create a function called 'anyDebt' that takes an account (object with multiple bank account balances) and returns true if any of the balances are negative.
355355
356356
The following lines should help test if your function works correctly. They should print true.
357357
*/

0 commit comments

Comments
 (0)