Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion postgres/_authentication_failure_reason.pony
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ primitive InvalidPassword

primitive ServerVerificationFailed
"""
The server's SCRAM signature did not match \exhaustive\ the expected value. This may
The server's SCRAM signature did not match the expected value. This may
indicate a man-in-the-middle attack or a misconfigured server.
"""

Expand Down
2 changes: 1 addition & 1 deletion postgres/_test_equality.pony
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ use "pony_test"
class \nodoc\ iso _TestFieldEqualityReflexive is UnitTest
"""
Every FieldDataTypes variant produces a Field that is equal to itself.
Covers all 9 variants of the FieldDataTypes union to verify each match \exhaustive\
Covers all 9 variants of the FieldDataTypes union to verify each match
branch in Field.eq.
"""
fun name(): String => "Field/Equality/Reflexive"
Expand Down
4 changes: 2 additions & 2 deletions postgres/postgres.pony
Original file line number Diff line number Diff line change
Expand Up @@ -131,11 +131,11 @@ Results arrive via `ResultReceiver`:

```pony
be pg_query_result(session: Session, result: Result) =>
match \exhaustive\ result
match result
| let rs: ResultSet =>
for row in rs.rows().values() do
for field in row.fields.values() do
match \exhaustive\ field.value
match field.value
| let s: String => _env.out.print(field.name + ": " + s)
| let i: I32 => _env.out.print(field.name + ": " + i.string())
| let b: Bool => _env.out.print(field.name + ": " + b.string())
Expand Down
2 changes: 1 addition & 1 deletion postgres/query_error.pony
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,6 @@ primitive DataError is ClientQueryError
"""
Error returned when the data that came back from a query is in a format that
this library doesn't expect. This might indicate something like, the number
of columns across rows returned doesn't match \exhaustive\ or other "this should never
of columns across rows returned doesn't match or other "this should never
happen" type of errors.
"""