From 90a80777b60e53aedd388bd81597e58b6be8f6af Mon Sep 17 00:00:00 2001 From: Chris Rybicki Date: Fri, 6 Sep 2024 13:50:32 -0400 Subject: [PATCH] chore(docs): fix library name typo (#7084) --- docs/docs/04-winglibs/02-using-winglibs.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/docs/04-winglibs/02-using-winglibs.md b/docs/docs/04-winglibs/02-using-winglibs.md index afcbd0fcf5f..9ce484a4338 100644 --- a/docs/docs/04-winglibs/02-using-winglibs.md +++ b/docs/docs/04-winglibs/02-using-winglibs.md @@ -9,16 +9,16 @@ keywords: [Wing reference, Wing libraries, libraries, packaging, packages] Wing libraries ([winglibs](https://github.com/winglang/winglibs)) can be installed using the npm command line tool. -Here is an example of installing the [wing-redis winglib](https://github.com/winglang/winglibs/tree/main/redis). +Here is an example of installing the [redis winglib](https://github.com/winglang/winglibs/tree/main/redis). ``` -npm i wing-redis +npm i @winglibs/redis ``` Then in your Wing source code, the library can be imported by name using a `bring` statement: ```js -bring "wing-redis" as redis; +bring "@winglibs/redis" as redis; new redis.Redis(); ```