Didn't correct output for LTRIM function - Mailing list pgsql-docs

From PG Doc comments form
Subject Didn't correct output for LTRIM function
Date
Msg-id 165508477855.573547.14409154187053327475@wrigleys.postgresql.org
Whole thread Raw
Responses Re: Didn't correct output for LTRIM function  (Guillaume Lelarge <guillaume@lelarge.info>)
List pgsql-docs
The following documentation comment has been logged on the website:

Page: https://www.postgresql.org/docs/14/bug-reporting.html
Description:

First check the output of "select LTRIM('  startech academy ', '  sta');"
  output is "rtech academy "
now the thing is output of "select LTRIM('  startech academy ', '  star');"
   output is "ech academy "
the question is where is 't'?

The problem is when we do LTRIM for trimming the first four characters, it
trims the first five characters. but in the case of doing three characters,
it gives the correct output.

pgsql-docs by date:

Previous
From: "David G. Johnston"
Date:
Subject: Re: COPY FROM
Next
From: Guillaume Lelarge
Date:
Subject: Re: Didn't correct output for LTRIM function