From cdbf72e02d73585de321872ce67957f39c64d80a Mon Sep 17 00:00:00 2001 From: Duke Date: Thu, 14 Mar 2024 07:28:52 -0300 Subject: [PATCH] Fix CUSTOM_ELEMENTS_SCHEMA name (#2548) Just a small typo in angular guide. --- docs/getting-started/elements/angular.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/getting-started/elements/angular.md b/docs/getting-started/elements/angular.md index f4cdfa7d7..0c9e22493 100644 --- a/docs/getting-started/elements/angular.md +++ b/docs/getting-started/elements/angular.md @@ -86,7 +86,7 @@ const routes: Routes = [ export class AppRoutingModule {} ``` -Finally, set up Angular to allow [Web Components](https://developer.mozilla.org/en-US/docs/Web/Web_Components). Head over to the `app-module.ts` file and add the [CUSTOM_PORTAL_SCHEMA](https://angular.io/api/core/CUSTOM_ELEMENTS_SCHEMA). +Finally, set up Angular to allow [Web Components](https://developer.mozilla.org/en-US/docs/Web/Web_Components). Head over to the `app-module.ts` file and add the [CUSTOM_ELEMENTS_SCHEMA](https://angular.io/api/core/CUSTOM_ELEMENTS_SCHEMA). It'll end up looking like this: @@ -123,4 +123,4 @@ And you should see the API reference documentation for the Zoom API. ## Configuration -See [Elements Configuration Options](elements-options.md). \ No newline at end of file +See [Elements Configuration Options](elements-options.md).