Small typo fix on tableam documentation

Started by Alexis Andrieuover 7 years ago2 messageshackers
Beta feature

Hackorum builds and tests every patch posted to the lists, not only commitfest submissions. This is Hackorum's own CI rather than the PostgreSQL project's, and it is still under testing - please report anything that looks wrong.

won't retrysuccessCI history

You can run a PostgreSQL built from this patch straight from Docker, with no checkout and no build:

docker run --rm -p 5432:5432 ghcr.io/hackorum-dev/postgres-patch:t40392
psql -h localhost -U postgres

Built from patchset v1 (message #1), July 28, 2026 at 04:27 AM.

Every patchset is also pushed to a branch of our PostgreSQL fork, so you can check out the same tree CI built. Without a PostgreSQL checkout:

git clone --branch t40392_1 https://github.com/hackorum-dev/postgres.git

In a checkout you already have, add the fork once:

git remote add hackorum https://github.com/hackorum-dev/postgres.git

then, for this patchset and every later one:

git fetch hackorum t40392_1 && git checkout t40392_1

Patchset v1 (message #1) is on t40392_1

Jump to latest
#1Alexis Andrieu
andrieu.alexis@hotmail.com

Hello,

I noticed a small typo (word 'the' is repeated twice) in the recent tableam doc.

The patch remove the typo in the doc ('/doc/src/sgml/tableam.sgml').

Regard,
Alexis

Attachments:

t40392_1
tableam-fix-doc.patchapplication/octet-stream; name=tableam-fix-doc.patchDownload+1-1
#2Andres Freund
andres@anarazel.de
In reply to: Alexis Andrieu (#1)
Re: Small typo fix on tableam documentation

Hi,

On 2019-04-05 16:26:16 +0000, Alexis Andrieu wrote:

I noticed a small typo (word 'the' is repeated twice) in the recent tableam doc.

The patch remove the typo in the doc ('/doc/src/sgml/tableam.sgml').

Thanks for noticing and reporting! It was already reported by Justin
Pryzby. I'd have given you co-credit if I had seen this email beforehand.

commit 86cc06d1cf9c30be3b79207242e6746f0f0b681c (HEAD -> master, upstream/master)
Author: Andres Freund <andres@anarazel.de>
Date: 2019-04-05 09:45:59 -0700

table: docs: fix typos and grammar.

Author: Justin Pryzby
Discussion: /messages/by-id/20190404055138.GA24864@telsasoft.com

- Andres