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
4 changes: 2 additions & 2 deletions docs/fsharp/language-reference/object-expressions.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ let obj2 = delimiter("{","}", "Bananas!");

printfn "%A" (System.String.Format("{0:D}", obj2))

// This object expression implements multiple interfaces.
// Define two interfaces
type IFirst =
abstract F : unit -> unit
abstract G : unit -> unit
Expand All @@ -57,7 +57,7 @@ type ISecond =
abstract H : unit -> unit
abstract J : unit -> unit

// This object expression implements an interface chain.
// This object expression implements both interfaces.
let implementer() =
{ new ISecond with
member this.H() = ()
Expand Down