diff --git a/basis/db/tuples/tuples-docs.factor b/basis/db/tuples/tuples-docs.factor index f099a4b16c..a744701b56 100644 --- a/basis/db/tuples/tuples-docs.factor +++ b/basis/db/tuples/tuples-docs.factor @@ -134,13 +134,13 @@ HELP: select-tuple { $values { "query/tuple" tuple } { "tuple/f" { $maybe tuple } } } -{ $description "A SQL query is constructed from the slots of the exemplar tuple that are not " { $link f } ". Returns a single tuple from the database if it matches the query constructed from the exemplar tuple." } ; +{ $description "An SQL query is constructed from the slots of the exemplar tuple that are not " { $link f } ". Returns a single tuple from the database if it matches the query constructed from the exemplar tuple." } ; HELP: select-tuples { $values { "query/tuple" tuple } { "tuples" "an array of tuples" } } -{ $description "A SQL query is constructed from the slots of the exemplar tuple that are not " { $link f } ". Returns an array of multiple tuples from the database that match the query constructed from the exemplar tuple." } ; +{ $description "An SQL query is constructed from the slots of the exemplar tuple that are not " { $link f } ". Returns an array of multiple tuples from the database that match the query constructed from the exemplar tuple." } ; HELP: count-tuples { $values diff --git a/basis/db/types/types-docs.factor b/basis/db/types/types-docs.factor index 72d6c2edc2..4f23cfcbec 100644 --- a/basis/db/types/types-docs.factor +++ b/basis/db/types/types-docs.factor @@ -97,12 +97,12 @@ HELP: user-assigned-id-spec? HELP: bind# { $values - { "spec" "a SQL spec" } { "obj" object } } + { "spec" "an SQL spec" } { "obj" object } } { $description "A generic word that lets a database construct a literal binding." } ; HELP: bind% { $values - { "spec" "a SQL spec" } } + { "spec" "an SQL spec" } } { $description "A generic word that lets a database output a binding." } ; HELP: db-assigned-id-spec? @@ -120,23 +120,23 @@ HELP: find-primary-key HELP: no-sql-type { $values - { "type" "a SQL type" } } + { "type" "an SQL type" } } { $description "Throws an error containing an SQL type that is unsupported or the result of a typo." } ; HELP: normalize-spec { $values - { "spec" "a SQL spec" } } + { "spec" "an SQL spec" } } { $description "Normalizes an SQL spec." } ; HELP: primary-key? { $values - { "spec" "a SQL spec" } + { "spec" "an SQL spec" } { "?" boolean } } { $description "Returns true if an SQL spec is a primary key." } ; HELP: relation? { $values - { "spec" "a SQL spec" } + { "spec" "an SQL spec" } { "?" boolean } } { $description "Returns true if an SQL spec is a relation." } ;