Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion .github/workflows/syntaxCheckPullRequest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,9 @@ jobs:
id: get_message
if: steps.check_files.outputs.files_exists == 'true'
run: |
echo "MESSAGE=$(echo '$(cat ./build/errors/syntaxErrors.md)')" >> $GITHUB_ENV
message=`cat ./build/errors/syntaxErrors.md`
echo ${message}
echo "MESSAGE=$(echo ${message})" >> $GITHUB_ENV

- name: Comment Syntax Errors
if: ${{ env.MESSAGE != '' }}
Expand Down
2 changes: 1 addition & 1 deletion devon4j-architecture/index.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ devon4j application follows [multilayered architecture](https://en.wikipedia.org

[step]
--
nextKatacodaXStep("devon4j application layers", [{ "image": "images/jtqj_detailed_app_structure.jpg" }])
nextKatacodaXXStep("devon4j application layers", [{ "image": "images/jtqj_detailed_app_structure.jpg" }])
--

Above image display detailed structure of devon4j application. As shown above jump-the-queue application contains different components like queuemanagement, visitormanagement etc
Expand Down