xtensor icon indicating copy to clipboard operation
xtensor copied to clipboard

Small error in docs

Open glee92 opened this issue 2 years ago • 1 comments

https://github.com/xtensor-stack/xtensor/blob/78aaac39143caa78da7c5c0734ccef957535f0c0/docs/source/quickref/manipulation.rst

Very minor issue.

Change

auto sq0 = xt::xqueeze(b); auto sq1 = squeeze(b, {2, 3}, check_policy::full()); auto sq2 = squeeze(b, 2);

to

auto sq0 = xt::squeeze(b); auto sq1 = xt::squeeze(b, {2, 3}, check_policy::full()); auto sq2 = xt::squeeze(b, 2);

glee92 avatar Jul 08 '21 20:07 glee92

Thanks a lot. It would be amazing if you can submit a pull request, I'll be happy to merge it!

tdegeus avatar Jul 09 '21 08:07 tdegeus