From 8e8ee1e51a6e4f75189a2a18b617272988e104f7 Mon Sep 17 00:00:00 2001 From: Martin Kunz Date: Mon, 13 Sep 2021 13:19:33 +0200 Subject: [PATCH] fix: typo --- docs/src/gettingstarted.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/src/gettingstarted.md b/docs/src/gettingstarted.md index 499f084..a883fcc 100644 --- a/docs/src/gettingstarted.md +++ b/docs/src/gettingstarted.md @@ -88,7 +88,7 @@ If you want to use a function that does not support missing values out of the bo ## Piping data through a LINQ style query -LINQ style queries can also be intgrated into data pipelines that are constructed via the `|>` operator. Such queries are started with the `@query` macro instead of +LINQ style queries can also be integrated into data pipelines that are constructed via the `|>` operator. Such queries are started with the `@query` macro instead of the `@from` macro. The main difference between those two macros is that the `@query` macro does not take an argument for the data source, instead the data source needs to be piped into the query. In practice the syntax for the `@query` macro looks like this: ```julia