From 78955d14b4c3d03332c941e10a117e81e008fd11 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Markus=20Lindstr=C3=B6m?= Date: Thu, 2 Jul 2020 10:41:45 +0200 Subject: [PATCH] Fix misplaced plan in best practices sample. --- 1-CONTRIBUTION-GUIDE/best-practices.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/1-CONTRIBUTION-GUIDE/best-practices.md b/1-CONTRIBUTION-GUIDE/best-practices.md index 8ef9f842674f..558c78f05f1d 100644 --- a/1-CONTRIBUTION-GUIDE/best-practices.md +++ b/1-CONTRIBUTION-GUIDE/best-practices.md @@ -384,12 +384,12 @@ The following code provides an example: "type": "Microsoft.Compute/virtualMachines", "name": "[parameters('vmName')]", "location": "[parameters('location')]", + "plan": { + "name": "ContosoSKU", + "publisher":"Contoso", + "product":"ContosoProduct" + }, "properties": { - "plan": { - "name": "ContosoSKU", - "publisher":"Contoso", - "product":"ContosoProduct" - }, "hardwareProfile": { "vmSize": "[parameters('vmSize')]" },