diff --git a/README.md b/README.md index 4fd9040..172207e 100644 --- a/README.md +++ b/README.md @@ -1,10 +1,10 @@ # Widgetly -Library helps you to create widgets, including widgets that work via an iframe. +Library that helps you to create widgets, including widgets that work via an iframe. ## Main goals -* Reusable Widgets: extract some business logic into a universal widget, which can then be easily reused across various applications. A single widget can be integrated into numerous applications without the need to change its code. +* Reusable widgets: extract some business logic into a universal widget, which can then be easily reused across various applications. A single widget can be integrated into numerous applications without the need to change its code. * API: create an external interface for interacting with the widget, that provides for developers methods to control the widget, receive data from it, and send data to the widget. * Transport: use built-in mechanism for sync data and methods between the application, widget, and iframe, without using `postMessage` directly. * Framework agnostic: use any libraries and frameworks to create widgets and applications that embed them, increasing flexibility and development speed. diff --git a/package.json b/package.json index 97745b0..647dd9c 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "widgetly", "version": "6.1.1", - "description": "Library helps you to create widgets, including widgets that work via an iframe", + "description": "Library that helps you to create widgets, including widgets that work via an iframe", "main": "dist/index.js", "module": "dist/index.js", "types": "dist/index.d.ts", diff --git a/typedoc.json b/typedoc.json index e1a5a9b..d7f1ba1 100644 --- a/typedoc.json +++ b/typedoc.json @@ -1,7 +1,7 @@ { "extends": "@rambler-tech/typedoc-config", "customTitle": "Widgetly", - "customDescription": "Library helps you to create iframe widgets", + "customDescription": "Library that helps you to create widgets, including widgets that work via an iframe", "readme": "README.md", "entryPoints": ["src/index.ts"], "out": "public",