diff --git a/docs/src/content/docs/openapi-fetch/examples.md b/docs/src/content/docs/openapi-fetch/examples.md index 7982bc96f..adbc7a3d6 100644 --- a/docs/src/content/docs/openapi-fetch/examples.md +++ b/docs/src/content/docs/openapi-fetch/examples.md @@ -70,7 +70,7 @@ client.GET("/some-authenticated-url", { ## Caching -openapi-fetch doesn’t provide any caching utilities (it’s 1 kb, remember?). But this library is so lightweight, caching can be added easily. +openapi-fetch doesn’t provide any caching utilities. But this library is so lightweight, caching can be added easily. ### Built-in Fetch caching diff --git a/docs/src/content/docs/openapi-fetch/index.md b/docs/src/content/docs/openapi-fetch/index.md index fd84932cc..dafa1d8d1 100644 --- a/docs/src/content/docs/openapi-fetch/index.md +++ b/docs/src/content/docs/openapi-fetch/index.md @@ -5,7 +5,7 @@ description: Get Started with openapi-fetch openapi-fetch -openapi-fetch applies your OpenAPI types to the native fetch API via TypeScript. Weighs in at **2 kb** and has virtually zero runtime. Works with React, Vue, Svelte, or vanilla JS. +openapi-fetch applies your OpenAPI types to the native fetch API via TypeScript. Weighs **2 kb** and has virtually zero runtime. Works with React, Vue, Svelte, or vanilla JS. | Library | Size (min) | | :----------------------------- | ---------: | @@ -13,7 +13,7 @@ openapi-fetch applies your OpenAPI types to the native fetch API via TypeScript. | **openapi-typescript-fetch** | `4 kB` | | **openapi-typescript-codegen** | `345 kB` | -The syntax is inspired by popular libraries like react-query or Apollo client, but without all the bells and whistles and in a 1 kb package. +The syntax is inspired by popular libraries like react-query or Apollo client, but without all the bells and whistles and in a 2 kb package. ```ts import createClient from "openapi-fetch"; diff --git a/packages/openapi-fetch/README.md b/packages/openapi-fetch/README.md index b9a1c090a..6eefd972a 100644 --- a/packages/openapi-fetch/README.md +++ b/packages/openapi-fetch/README.md @@ -1,6 +1,6 @@ openapi-fetch -openapi-fetch applies your OpenAPI types to the native fetch API via TypeScript. Weighs in at **2 kb** and has virtually zero runtime. Works with React, Vue, Svelte, or vanilla JS. +openapi-fetch applies your OpenAPI types to the native fetch API via TypeScript. Weighs **2 kb** and has virtually zero runtime. Works with React, Vue, Svelte, or vanilla JS. | Library | Size (min) | | :----------------------------- | ---------: | @@ -8,7 +8,7 @@ openapi-fetch applies your OpenAPI types to the native fetch API via TypeScript. | **openapi-typescript-fetch** | `4 kB` | | **openapi-typescript-codegen** | `345 kB` | -The syntax is inspired by popular libraries like react-query or Apollo client, but without all the bells and whistles and in a 1 kb package. +The syntax is inspired by popular libraries like react-query or Apollo client, but without all the bells and whistles and in a 2 kb package. ```ts import createClient from "openapi-fetch"; diff --git a/packages/openapi-fetch/package.json b/packages/openapi-fetch/package.json index c9cfb4a42..47b834114 100644 --- a/packages/openapi-fetch/package.json +++ b/packages/openapi-fetch/package.json @@ -1,6 +1,6 @@ { "name": "openapi-fetch", - "description": "Fetch using your OpenAPI types. Weighs in at 1 kb and has virtually zero runtime. Works with React, Vue, Svelte, or vanilla JS.", + "description": "Fetch using your OpenAPI types. Weighs 2 kb and has virtually zero runtime. Works with React, Vue, Svelte, or vanilla JS.", "version": "0.7.0", "author": { "name": "Drew Powers",