Skip to content

Commit 44df9fb

Browse files
committed
Minor doc tweaks.
1 parent d9a93f7 commit 44df9fb

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

Docs/faq.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,4 +24,4 @@ Postgres doesn't require the columns returned by a `SELECT` to be uniquely named
2424

2525
### In retrieving the value of a column, why do I need to specify the Swift type?
2626

27-
To make Postgres-to-Swift type conversion explicit and robust, PostgresClientKit defers to the developer. Should a SQL `NUMERIC` map to a Swift `Int`, `Double`, or `Decimal`? Should a SQL `VARCHAR` map to a Swift `String` or an `Optional<String>`? Ultimately answering these questions requires domain knowledge, which may not be encoded in the SQL data model, but which (hopefully) the developer has.
27+
To make Postgres-to-Swift type conversion explicit and robust, PostgresClientKit defers to the developer. Should a SQL `NUMERIC` map to a Swift `Int`, `Double`, or `Decimal`? Should a SQL `VARCHAR` map to a Swift `String` or an `Optional<String>`? Answering these questions requires domain knowledge, which may not be encoded in the SQL data model, but which the developer (hopefully) has.

Docs/troubleshooting.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ Review the [`pg_hba.conf`](https://www.postgresql.org/docs/11/auth-pg-hba-conf.h
5151

5252
## Cursor is unexpectedly closed
5353

54-
The deinitializers of `Connection`, `Statement`, and `Cursor` call `close()` on instances of those types. This is normally a convenient way to ensure Postgres resources are released, but can have unexpected side effects, particular for `Statement`. For example:
54+
The deinitializers of `Connection`, `Statement`, and `Cursor` call `close()` on instances of those types. This is normally a convenient way to ensure Postgres resources are released, but can have unexpected side effects, particularly for `Statement`. For example:
5555

5656
```swift
5757
// Perform a first SQL command.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ Please use [issues](../../issues) to:
158158
- report problems (bugs)
159159
- request enhancements
160160

161-
Pull requests are welcomed. For a non-trivial contribution (for example, more than correcting spelling, typos, or whitespace) please first discuss the proposed change by opening an issue.
161+
Pull requests against the `develop` branch are welcomed. For a non-trivial contribution (for example, more than correcting spelling, typos, or whitespace) please first discuss the proposed change by opening an issue.
162162

163163
## License
164164

0 commit comments

Comments
 (0)