From 5e5ec2b9f9708329ffc803eb929bb386cedc56b9 Mon Sep 17 00:00:00 2001 From: Sultan Iman Date: Thu, 1 Feb 2024 11:38:55 +0100 Subject: [PATCH 1/2] Adjust pipeline explanation --- docs/website/docs/general-usage/pipeline.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/website/docs/general-usage/pipeline.md b/docs/website/docs/general-usage/pipeline.md index 4850027f24..06e32d4e5a 100644 --- a/docs/website/docs/general-usage/pipeline.md +++ b/docs/website/docs/general-usage/pipeline.md @@ -7,9 +7,9 @@ keywords: [pipeline, source, full refresh] # Pipeline A [pipeline](glossary.md#pipeline) is a connection that moves the data from your Python code to a -[destination](glossary.md#destination). Typically, you pass the `dlt` [sources](source.md) or -[resources](resource.md) to the pipeline. You can also pass generators, lists and other iterables to -it. When the pipeline runs, the resources get executed and the data is loaded at destination. +[destination](glossary.md#destination). Pipeline accepts `dlt` [sources](source.md) or +[resources](resource.md) as well as generators, lists and any iterables. +Once pipeline runs, all resources get evaluated and the data is loaded at destination. Example: From 84fa7eded8e6dc73ac7312d764faacb7248f363c Mon Sep 17 00:00:00 2001 From: Sultan Iman Date: Thu, 1 Feb 2024 14:27:54 +0100 Subject: [PATCH 2/2] Add missing articles and more clarifications --- docs/website/docs/general-usage/pipeline.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/website/docs/general-usage/pipeline.md b/docs/website/docs/general-usage/pipeline.md index 06e32d4e5a..095e03e96d 100644 --- a/docs/website/docs/general-usage/pipeline.md +++ b/docs/website/docs/general-usage/pipeline.md @@ -7,9 +7,9 @@ keywords: [pipeline, source, full refresh] # Pipeline A [pipeline](glossary.md#pipeline) is a connection that moves the data from your Python code to a -[destination](glossary.md#destination). Pipeline accepts `dlt` [sources](source.md) or -[resources](resource.md) as well as generators, lists and any iterables. -Once pipeline runs, all resources get evaluated and the data is loaded at destination. +[destination](glossary.md#destination). The pipeline accepts `dlt` [sources](source.md) or +[resources](resource.md) as well as generators, async generators, lists and any iterables. +Once the pipeline runs, all resources get evaluated and the data is loaded at destination. Example: