fix(curriculum): improve instructions of Library Manager step 5 and 11 (#62499)

This commit is contained in:
Diem-Trang Pham
2025-10-05 03:05:16 -05:00
committed by GitHub
parent 1548b7ec2a
commit a6cdf5ca92
2 changed files with 2 additions and 2 deletions
@@ -9,7 +9,7 @@ dashedName: step-11
To get a list of book summaries, you can use the `about` property of each book.
Create a `getBookSummaries` function with a single parameter, accepting an array with book objects. You can name the parameter whatever you like.
Create a `getBookSummaries` function with a single parameter, accepting an array with book objects.
The `getBookSummaries` function should return an array of strings representing the summary for each book.
@@ -7,7 +7,7 @@ dashedName: step-5
# --description--
Next, create a function called `getBookInformation` with one parameter. This parameter will represent the array of books when the function is called. You can name this parameter whatever you like.
Next, create a function called `getBookInformation` with one parameter. This parameter will represent the array of books when the function is called. You could name the parameter `catalog`.
# --hints--