Skip to content

Commit ca4e8c6

Browse files
committed
fixed error introduced in 5fcad29 that breaks the evaluation of values when watcher.fsx is used
1 parent ea81036 commit ca4e8c6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

release/watcher/watcher.fsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ fsi.AddPrinter (fun (_: obj) ->
137137
let shadowed = (fst state).Contains name
138138
let parms =
139139
parms
140-
|> Seq.map (fun (n, t) -> $"{n}: {t}")
140+
|> Seq.map (fun (n, t) -> n + ": " + t)
141141
|> String.concat "; "
142142
formatVarsAndFuncs name parms typ step shadowed, name)
143143
let names =

0 commit comments

Comments
 (0)