Skip to content

Commit

Permalink
Fix egregious and unidiomatic equality syntax in the FSI watcher (#1975)
Browse files Browse the repository at this point in the history
  • Loading branch information
baronfel authored Jan 4, 2024
1 parent 5645d12 commit 70f7f12
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Components/Fsi.fs
Original file line number Diff line number Diff line change
Expand Up @@ -291,7 +291,7 @@ module Fsi =
let hint =
vscode.InlayHint.Create(
line.range.``end``,
!!(" == " + value),
!!(" = " + value),
InlayHintKind.Parameter
)

Expand Down

0 comments on commit 70f7f12

Please sign in to comment.