From 0155bc7a237554bec1a5dda907b67624b65f2a11 Mon Sep 17 00:00:00 2001 From: Phil Rzewski Date: Mon, 24 Aug 2026 17:42:19 -0700 Subject: [PATCH] Fix some nits in the books to avoid codespell exceptions --- book/src/formats/sup.md | 2 +- book/src/super-sql/operators/put.md | 2 +- sup/ztests/outer-schema.yaml | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/book/src/formats/sup.md b/book/src/formats/sup.md index b6e0f3cc70..2272249929 100644 --- a/book/src/formats/sup.md +++ b/book/src/formats/sup.md @@ -419,7 +419,7 @@ A relational table might look like this: ``` { city: "Berkeley", state: "CA", population: 121643::uint32 }::=city_schema { city: "Broad Cove", state: "ME", population: 806::uint32 }::=city_schema -{ city: "Baton Rouge", state: "LA", population: 221599::uint32 }::=city_schema +{ city: "Sioux Falls", state: "SD", population: 192517::uint32 }::=city_schema ``` The text here depicts three record values. It defines a type called `city_schema` and the inferred type of the `city_schema` has the signature: diff --git a/book/src/super-sql/operators/put.md b/book/src/super-sql/operators/put.md index b8c44e805e..1fa4ee5e52 100644 --- a/book/src/super-sql/operators/put.md +++ b/book/src/super-sql/operators/put.md @@ -28,7 +28,7 @@ while modified fields are mutated in place. If multiple fields are written in a single `put`, all the new field values are computed first and then they are all written simultaneously. As a result, a computed value cannot be referenced in another expression. If you need -to re-use a computed result, this can be done by chaining multiple `put` operators. +to reuse a computed result, this can be done by chaining multiple `put` operators. The `put` keyword is optional since it can be used as a [shortcut](intro.md#shortcuts). When used as a shortcut, the `:=` portion of `` is not optional. diff --git a/sup/ztests/outer-schema.yaml b/sup/ztests/outer-schema.yaml index 24a1ca927e..dd46b8799e 100644 --- a/sup/ztests/outer-schema.yaml +++ b/sup/ztests/outer-schema.yaml @@ -7,7 +7,7 @@ inputs: type city_schema={city:string,state:string,population:int64} {city:"Berkeley",state:"CA",population:121643}::city_schema {city:"Broad Cove",state:"ME",population:806}::city_schema - {city:"Baton Rouge",state:"LA",population:221599}::city_schema + {city:"Sioux Falls",state:"SD",population:192517}::city_schema outputs: - name: stdout @@ -15,4 +15,4 @@ outputs: type city_schema={city:string,state:string,population:int64} {city:"Berkeley",state:"CA",population:121643}::city_schema {city:"Broad Cove",state:"ME",population:806}::city_schema - {city:"Baton Rouge",state:"LA",population:221599}::city_schema + {city:"Sioux Falls",state:"SD",population:192517}::city_schema