diff --git a/content/actions/learn-github-actions/expressions.md b/content/actions/learn-github-actions/expressions.md index 305c8b363e..5da4b5f6ed 100644 --- a/content/actions/learn-github-actions/expressions.md +++ b/content/actions/learn-github-actions/expressions.md @@ -221,7 +221,7 @@ jobs: needs: job1 runs-on: ubuntu-latest strategy: - matrix: ${{fromJSON(needs.job1.outputs.matrix)}} + matrix: ${{ fromJSON(needs.job1.outputs.matrix) }} steps: - run: build ```