From 65504062929f3ceef03661ad567ae133274f95d0 Mon Sep 17 00:00:00 2001 From: Chet Husk Date: Thu, 4 Jan 2024 09:37:58 -0600 Subject: [PATCH] Fix egregious and unidiomatic equality syntax in the FSI watcher --- src/Components/Fsi.fs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Components/Fsi.fs b/src/Components/Fsi.fs index eb93f739..6857aab5 100644 --- a/src/Components/Fsi.fs +++ b/src/Components/Fsi.fs @@ -291,7 +291,7 @@ module Fsi = let hint = vscode.InlayHint.Create( line.range.``end``, - !!(" == " + value), + !!(" = " + value), InlayHintKind.Parameter )