diff --git a/docs/website/docs/dlt-ecosystem/verified-sources/pipedrive.md b/docs/website/docs/dlt-ecosystem/verified-sources/pipedrive.md index a714186c7d..689f8f7808 100644 --- a/docs/website/docs/dlt-ecosystem/verified-sources/pipedrive.md +++ b/docs/website/docs/dlt-ecosystem/verified-sources/pipedrive.md @@ -266,7 +266,7 @@ verified source. ```python load_data = pipedrive_source() # calls the source function - load_info = pipeline.run(load_info) #runs the pipeline with selected source credentials + load_info = pipeline.run(load_info) #runs the pipeline with selected source configuration print(load_info) ``` diff --git a/docs/website/docs/general-usage/resource.md b/docs/website/docs/general-usage/resource.md index d327bb53d6..e203b3d93a 100644 --- a/docs/website/docs/general-usage/resource.md +++ b/docs/website/docs/general-usage/resource.md @@ -174,7 +174,7 @@ for row in generate_rows(20): print(row) ``` -You can mark some resource arguments as configuration and [credentials](credentials/add_credentials.md) values +You can mark some resource arguments as [configuration and credentials](credentials) values so `dlt` can pass them automatically to your functions. ### Process resources with `dlt.transformer` diff --git a/docs/website/docs/walkthroughs/add-a-verified-source.md b/docs/website/docs/walkthroughs/add-a-verified-source.md index 3c2a604ce1..0710f8b958 100644 --- a/docs/website/docs/walkthroughs/add-a-verified-source.md +++ b/docs/website/docs/walkthroughs/add-a-verified-source.md @@ -76,7 +76,7 @@ the supported locations. ## 2. Adding credentials For adding them locally or on your orchestrator, please see the following guide -[credentials](../general-usage/credentials). +[credentials](../general-usage/credentials/add_credentials). ## 3. Customize or write a pipeline script