From 81542b3b7294426050b26fc8db2883743f3246b6 Mon Sep 17 00:00:00 2001 From: Samuel Date: Sat, 4 Jul 2020 22:24:59 +0200 Subject: [PATCH] docs(core): Fixed typo in Type JSdoc (#37930) Updated comment doc in packages/core/src/interface/type.ts PR Close #37930 --- packages/core/src/interface/type.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/core/src/interface/type.ts b/packages/core/src/interface/type.ts index fb1865bd5c..8c538cb308 100644 --- a/packages/core/src/interface/type.ts +++ b/packages/core/src/interface/type.ts @@ -11,7 +11,7 @@ * * Represents a type that a Component or other object is instances of. * - * An example of a `Type` is `MyCustomComponent` class, which in JavaScript is be represented by + * An example of a `Type` is `MyCustomComponent` class, which in JavaScript is represented by * the `MyCustomComponent` constructor function. * * @publicApi