Skip to content

Commit

Permalink
There is no example in the previous section.
Browse files Browse the repository at this point in the history
Seems the sections for Standard and LINQ in this document were swapped.
  • Loading branch information
petershintech committed Feb 22, 2019
1 parent 7ab5f58 commit cdfcb97
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/src/gettingstarted.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Query.jl supports two different front-end syntax options: 1) standalone query op

## Standalone query operators

The standalone query operators are typically combined into more complicated queries via the pipe operator. The example from the previous section can also be written like this, using the `@filter` and `@map` standalone query operators:
The standalone query operators are typically combined into more complicated queries via the pipe operator. Probably the most simple example is a query that filters a DataFrame and returns a subset of its columns:

```jldoctest
using Query, DataFrames
Expand Down Expand Up @@ -37,7 +37,7 @@ q = @from <range variable> in <source> begin
end
```

Multiple `<query statements>` are separated by line breaks. Probably the most simple example is a query that filters a `DataFrame` and returns a subset of its columns:
Multiple `<query statements>` are separated by line breaks. The example from the previous section can also be written like this using LINQ style queryies:

```jldoctest
using Query, DataFrames
Expand Down

0 comments on commit cdfcb97

Please sign in to comment.