From 65029806dd43565f683ba28862eb10c6de0f0175 Mon Sep 17 00:00:00 2001 From: Noritaka Kobayashi Date: Sun, 25 May 2025 23:17:56 +0900 Subject: [PATCH] chore: fix typos in README --- packages/pg-cloudflare/README.md | 2 +- packages/pg-native/README.md | 2 +- packages/pg-query-stream/README.md | 2 +- packages/pg/README.md | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/packages/pg-cloudflare/README.md b/packages/pg-cloudflare/README.md index b2d6b9937..b8e28a6de 100644 --- a/packages/pg-cloudflare/README.md +++ b/packages/pg-cloudflare/README.md @@ -27,7 +27,7 @@ module.exports.getStream = function getStream(ssl = false) { ## Node.js implementation of the Socket API proposal -If you're looking for a way to rely on `connect()` as the interface you use to interact with raw sockets, but need this interface to be availble in a Node.js environment, [`@arrowood.dev/socket`](https://github.com/Ethan-Arrowood/socket) provides a Node.js implementation of the Socket API. +If you're looking for a way to rely on `connect()` as the interface you use to interact with raw sockets, but need this interface to be available in a Node.js environment, [`@arrowood.dev/socket`](https://github.com/Ethan-Arrowood/socket) provides a Node.js implementation of the Socket API. ### license diff --git a/packages/pg-native/README.md b/packages/pg-native/README.md index 160ddfae6..37db92908 100644 --- a/packages/pg-native/README.md +++ b/packages/pg-native/README.md @@ -264,7 +264,7 @@ Prepares a name statement with name of `statementName` and a query text of `quer - __`client.executeSync(statementName:string, ) -> results:Object[]`__ -Executes a previously prepared statement on this client with the name of `statementName`, passing it the optional array of query paramters as a `values` array. Throws an `Error` if the execution fails, otherwas returns an array of results. +Executes a previously prepared statement on this client with the name of `statementName`, passing it the optional array of query parameters as a `values` array. Throws an `Error` if the execution fails, otherwise returns an array of results. ## testing diff --git a/packages/pg-query-stream/README.md b/packages/pg-query-stream/README.md index f32a27788..0441c7025 100644 --- a/packages/pg-query-stream/README.md +++ b/packages/pg-query-stream/README.md @@ -32,7 +32,7 @@ pool.connect((err, client, done) => { The stream uses a cursor on the server so it efficiently keeps only a low number of rows in memory. -This is especially useful when doing [ETL](http://en.wikipedia.org/wiki/Extract,_transform,_load) on a huge table. Using manual `limit` and `offset` queries to fake out async itteration through your data is cumbersome, and _way way way_ slower than using a cursor. +This is especially useful when doing [ETL](http://en.wikipedia.org/wiki/Extract,_transform,_load) on a huge table. Using manual `limit` and `offset` queries to fake out async iteration through your data is cumbersome, and _way way way_ slower than using a cursor. _note: this module only works with the JavaScript client, and does not work with the native bindings. libpq doesn't expose the protocol at a level where a cursor can be manipulated directly_ diff --git a/packages/pg/README.md b/packages/pg/README.md index eeffcd14e..bf4effefb 100644 --- a/packages/pg/README.md +++ b/packages/pg/README.md @@ -46,7 +46,7 @@ You can also follow me [@briancarlson](https://twitter.com/briancarlson) if that ## Sponsorship :two_hearts: -node-postgres's continued development has been made possible in part by generous finanical support from [the community](https://github.com/brianc/node-postgres/blob/master/SPONSORS.md). +node-postgres's continued development has been made possible in part by generous financial support from [the community](https://github.com/brianc/node-postgres/blob/master/SPONSORS.md). If you or your company are benefiting from node-postgres and would like to help keep the project financially sustainable [please consider supporting](https://github.com/sponsors/brianc) its development.