This is an automated email from the ASF dual-hosted git repository. fanningpj pushed a commit to branch wip-small-guide-fixes in repository https://gitbox.apache.org/repos/asf/incubator-pekko-http-quickstart-scala-g8.git
commit 39783cbb22dd2c82caa4031a4039975a9860a7c4 Author: Johan Andrén <[email protected]> AuthorDate: Wed Nov 27 09:42:13 2019 +0100 Two small updates to the guide to align with how the quickstart actually works --- docs/src/main/paradox/intellij-idea.md | 2 +- docs/src/main/paradox/running-the-application.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/src/main/paradox/intellij-idea.md b/docs/src/main/paradox/intellij-idea.md index 935c3c7..57faa4f 100644 --- a/docs/src/main/paradox/intellij-idea.md +++ b/docs/src/main/paradox/intellij-idea.md @@ -27,7 +27,7 @@ Voila the lines are gone! ## Running the application -In the **Project** pane, right click the `QuickstartServer` source file. Select **Run 'QuickstartServer'**. The output should look like the output in the shell: +In the **Project** pane, right click the `QuickstartApp` source file. Select **Run 'QuickstartApp'**. The output should look like the output in the shell:  diff --git a/docs/src/main/paradox/running-the-application.md b/docs/src/main/paradox/running-the-application.md index d5fe205..7e57c94 100644 --- a/docs/src/main/paradox/running-the-application.md +++ b/docs/src/main/paradox/running-the-application.md @@ -4,7 +4,7 @@ Running the application When you ran the example for the first time, you were able to create and retrieve multiple users. Now that you understand how the example is implemented, let's confirm that the rest of the functionality works. We want to verify that: * If we try to retrieve users when none exist, we get an empty list. -* If we try to retrieve a specific user that doesn't exist, we get an informative message. +* If we try to retrieve a specific user that doesn't exist, we get a HTTP 404 `The requested resource could not be found` response. * We can delete users. To test this functionality, follow these steps. If you need reminders on starting the app or sending requests, refer to the @ref:[instructions](index.md#exercising-the-example) in the beginning. --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
