From 7e3dcadd377ef8a709050664b8b564f00c669096 Mon Sep 17 00:00:00 2001 From: Kam Date: Fri, 22 May 2026 23:21:10 +0300 Subject: [PATCH] docs: fix preposition in libraries naming callout The naming callout said the ng- prefix is "used from the Angular framework". Change to "used by", matching standard usage and the surrounding prose. --- adev/src/content/tools/libraries/creating-libraries.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/adev/src/content/tools/libraries/creating-libraries.md b/adev/src/content/tools/libraries/creating-libraries.md index dc8d245106b8..c1a755b2c082 100644 --- a/adev/src/content/tools/libraries/creating-libraries.md +++ b/adev/src/content/tools/libraries/creating-libraries.md @@ -23,7 +23,7 @@ You should be very careful when choosing the name of your library if you want to See [Publishing your library](tools/libraries/creating-libraries#publishing-your-library). Avoid using a name that is prefixed with `ng-`, such as `ng-library`. -The `ng-` prefix is a reserved keyword used from the Angular framework and its libraries. +The `ng-` prefix is a reserved keyword used by the Angular framework and its libraries. The `ngx-` prefix is preferred as a convention used to denote that the library is suitable for use with Angular. It is also an excellent indication to consumers of the registry to differentiate between libraries of different JavaScript frameworks.