From 16b2f159aebfc1f919955ac57cb3e3927ff0ba30 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ad=C3=A1m=20Brudzewsky?= Date: Wed, 2 Aug 2023 06:59:18 +0200 Subject: [PATCH] Quote PS expressions that have -eq --- _posts/2017-04-30-powershell.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/_posts/2017-04-30-powershell.md b/_posts/2017-04-30-powershell.md index 8c1e3cb..1b49871 100644 --- a/_posts/2017-04-30-powershell.md +++ b/_posts/2017-04-30-powershell.md @@ -2,8 +2,8 @@ title: PowerShell code: - 0.1 + 0.2 - - 0.1 + 0.2 -eq 0.3 - - [decimal]0.1 + [decimal]0.2 -eq [decimal]0.3 + - "0.1 + 0.2 -eq 0.3" + - "[decimal]0.1 + [decimal]0.2 -eq [decimal]0.3" - 0.1d + 0.2d -eq 0.3d result: - 0.3