Skip to content

Commit

Permalink
docs: fix typo in README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
teamchong committed Aug 23, 2024
1 parent 02995fe commit 629ee74
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/cli/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Scripting environment with convinient tooling for file ingestion, prompt develop
// define the context
def("FILE", env.files, { endsWith: ".pdf" })
// define the data
const chema = defSchema("DATA",
const schema = defSchema("DATA",
{ type: "array", items: { type: "string" } })
// define the task
$`Analyze FILE and
Expand Down
2 changes: 1 addition & 1 deletion packages/vscode/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ Scripting environment with convinient tooling for file ingestion, prompt develop
// define the context
def("FILE", env.files, { endsWith: ".pdf" })
// define the data
const chema = defSchema("DATA", { type: "array", items: { type: "string" } })
const schema = defSchema("DATA", { type: "array", items: { type: "string" } })
// define the task
$`Analyze FILE and
extract titles to JSON compliant with ${schema}.`
Expand Down

0 comments on commit 629ee74

Please sign in to comment.