Re: Misprint in the documentation of Vec

Aurel Page <[email protected]> Mon, 24 Jun 2024 08:49:43 +0200
Newsgroups gmane.comp.mathematics.pari.devel
Message-ID <[email protected]>
Dear Ilya,

This is already fixed on master:

commit a81114259db5709ee75579db1b44c2ba25ec2d89
Author: Bill Allombert <[email protected]>
Date:   Fri Dec 1 20:14:04 2023 +0100

     Vec: doc: fix typo in example: Vec->serVec. [#2508]

Thanks for your report!

Best,
Aurel

On 24/06/2024 05:20, Ilya Zakharevich wrote:
> Doing Shift-F1 on Vec shows
>
>
>     ? serVec(s) = Vec(s, -serprec(s,variable(s)));
>     ? Vec(x^2 + 3*x^3 + O(x^5))
>     %2 = [0, 0, 1, 3, 0]
>
> It seems it should have been
>     serVec
> in the second row.
>
> Hope this helps,
> Ilya