From 3c9237fbf21a7031c70062675f97c77d2df9c0e9 Mon Sep 17 00:00:00 2001 From: Anton Burnashev Date: Sat, 11 May 2024 10:07:21 +0200 Subject: [PATCH] Fix typo --- docs/website/docs/dlt-ecosystem/verified-sources/rest_api.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/website/docs/dlt-ecosystem/verified-sources/rest_api.md b/docs/website/docs/dlt-ecosystem/verified-sources/rest_api.md index d199440fad..4fc7449e59 100644 --- a/docs/website/docs/dlt-ecosystem/verified-sources/rest_api.md +++ b/docs/website/docs/dlt-ecosystem/verified-sources/rest_api.md @@ -383,7 +383,7 @@ One of the most common method is token-based authentication. To authenticate wit "client": { ... "auth": { - "token": dltd.secrets["your_api_token"], + "token": dlt.secrets["your_api_token"], }, ... }, @@ -423,7 +423,7 @@ from dlt.sources.helpers.rest_client.auth import BearerTokenAuth config = { "client": { - "auth": BearTokenAuth(dltd.secrets["your_api_token"]), + "auth": BearTokenAuth(dlt.secrets["your_api_token"]), }, ... }