Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion samples/snippets/fsharp/tour.fs
Original file line number Diff line number Diff line change
Expand Up @@ -936,7 +936,7 @@


/// This is an object that implements IDisposable via an Object Expression
/// Unlike other languages such as C# or Java, a new type definition is not needed
/// Unlike other languages, such as C#, a new type definition is not needed
Comment thread
adegeo marked this conversation as resolved.
/// to implement an interface.
let interfaceImplementation =
{ new System.IDisposable with
Expand All @@ -963,4 +963,4 @@
|> Array.Parallel.map (fun x -> computeSomeFunction (x % 20))

// Next, print the results.
printfn $"Parallel computation results: {computeResults}"

Check warning on line 966 in samples/snippets/fsharp/tour.fs

View workflow job for this annotation

GitHub Actions / snippets-build

This expression is a function value. When used in an interpolated string it will be formatted using its 'ToString' method, which is likely not the intended behavior. Consider applying the function to its arguments.

Check warning on line 966 in samples/snippets/fsharp/tour.fs

View workflow job for this annotation

GitHub Actions / snippets-build

This expression is a function value. When used in an interpolated string it will be formatted using its 'ToString' method, which is likely not the intended behavior. Consider applying the function to its arguments.
Loading