From 91b5ae936c592f2382bcac1eb639426a13214c5c Mon Sep 17 00:00:00 2001 From: Dmitry Pimenov Date: Fri, 12 Jan 2024 12:10:17 -0800 Subject: [PATCH] fixing typo --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index cc367c2e..19adf57e 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,7 @@ The SDK contains typings and request builders for the Webflow Data API. ## Documentation -Explore the API reference documentation [here](https://developers.webflow.com/reference/rest-introduction). +Explore the [API reference documentation](https://developers.webflow.com/reference/rest-introduction). ## Installation @@ -133,7 +133,7 @@ You can configure the retries by setting maxRetries. import { WebflowClient } from 'webflow'; const sites = await webflow.sites.get(..., { - maxRetries: 10 // override the reries + maxRetries: 10 // override the retries }); ```