From 70f7f12298bc2330ec4e8f5c7ef250dd5ee3295e Mon Sep 17 00:00:00 2001 From: Chet Husk Date: Thu, 4 Jan 2024 09:44:08 -0600 Subject: [PATCH] Fix egregious and unidiomatic equality syntax in the FSI watcher (#1975) --- 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 )