fix(curriculum): library manager newline sentence (#61880)

This commit is contained in:
pkdvalis
2025-08-19 15:42:40 -04:00
committed by GitHub
parent 9a78eba371
commit 12964a0997
2 changed files with 2 additions and 2 deletions

View File

@@ -11,7 +11,7 @@ The rest of the objects representing the books have been filled in for you.
Now would be a good time to start working on displaying the book information in the console. Over the next few steps, you will learn how to work with the `map()` method to achieve this goal.
Begin by logging the message `"Books in the Library:\n"` to the console. The newline character is added here because there should be a space between this message and the list of books.
Begin by logging the message `"Books in the Library:\n"` to the console. The newline character is added here to create a line break between this message and the list of books.
# --hints--

View File

@@ -9,7 +9,7 @@ dashedName: step-10
For the next part of the workshop, you will focus on displaying a list of book summaries to the console.
Begin by logging the message `"\nList of book summaries:\n"` to the console. The newline character is added here because there should be a space before and after the message here.
Begin by logging the message `"\nList of book summaries:\n"` to the console.
# --hints--