From 54de953131d65ad8c7020624673912c03d54bb8a Mon Sep 17 00:00:00 2001 From: Friedrich von Never Date: Tue, 2 Jan 2024 02:20:30 +0700 Subject: [PATCH] Update inaccurate comment in tour Java has a feature called anonymous classes that works practically the same as object expressions in F#. --- src/App/public/samples/tour/classes.fs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/App/public/samples/tour/classes.fs b/src/App/public/samples/tour/classes.fs index 1a0fe2aa..5ee09e37 100644 --- a/src/App/public/samples/tour/classes.fs +++ b/src/App/public/samples/tour/classes.fs @@ -83,7 +83,7 @@ type ReadFile(path: string) = /// 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 /// to implement an interface. let interfaceImplementation = { new System.IDisposable with