From d2328ccce892ba535d4d0d285fb4a638782d4f9e Mon Sep 17 00:00:00 2001 From: Rob Bos Date: Wed, 17 Aug 2022 08:20:01 +0200 Subject: [PATCH] Fix spacing inside expression for consistency (#19653) --- content/actions/learn-github-actions/expressions.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 ```