From a2d26c6f2a17a60cac300f59dd4314053655d2b1 Mon Sep 17 00:00:00 2001 From: Rado Kirov Date: Wed, 20 Mar 2019 14:40:27 -0700 Subject: [PATCH] docs: improve glossary for entry-point. (#29433) PR Close #29433 --- aio/content/guide/glossary.md | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/aio/content/guide/glossary.md b/aio/content/guide/glossary.md index 6f37759986..ae5f9ecc79 100644 --- a/aio/content/guide/glossary.md +++ b/aio/content/guide/glossary.md @@ -362,11 +362,12 @@ Compare to [custom element](#custom-element). ## entry point -A JavaScript symbol that makes parts of an [npm package](guide/npm-packages) available for import by other code. -The Angular [scoped packages](#scoped-package) each have an entry point named `index`. - -Within Angular, use [NgModules](#ngmodule) to make public parts available for import by other NgModules. - +A JavaScript module(#module) that is intended to be imported by a user of [an +npm package](guide/npm-packages). An entry-point module typically re-exports +symbols from other internal modules. A package can contain multiple +entry points. For example, the `@angular/core` package has two entry-point +modules, which can be imported using the module names `@angular/core` and +`@angular/core/testing`. {@a F}