Skip to content

Commit dbebe09

Browse files
authored
chore: small docs cleanups in postprocess and zig example (#5955)
1 parent 8337d23 commit dbebe09

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

prqlc/bindings/prqlc-c/examples/minimal-zig/src/main.zig

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,7 @@ pub fn main() !void {
99
const options = prql.Options{
1010
.format = false,
1111
.signature_comment = false,
12-
//.target = &target,
13-
.target = &target
12+
.target = &target,
1413
};
1514

1615
// Compile the PRQL query

prqlc/prqlc/src/sql/pq/postprocess.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
//! An AST pass after compilation to PQ.
22
//!
3-
//! Currently only moves [SqlTransform::Sort]s.
3+
//! Infers and propagates [SqlTransform::Sort]s through pipelines and assigns
4+
//! human-readable names to CTEs and relation variables.
45
56
use std::collections::{HashMap, HashSet, VecDeque};
67

0 commit comments

Comments
 (0)