From 89f11d0f3d0e399d232896b153bd77f261dd6f8b Mon Sep 17 00:00:00 2001 From: Nicholas Won Date: Tue, 23 Oct 2018 00:56:32 +0900 Subject: [PATCH] Fix a typo --- docs/source/numpy.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/source/numpy.rst b/docs/source/numpy.rst index dd9fc14e4..902a452fc 100644 --- a/docs/source/numpy.rst +++ b/docs/source/numpy.rst @@ -88,7 +88,7 @@ Two container types are provided. ``xarray`` (dynamic number of dimensions) and | ``np.array([[3, 4], [5, 6]])`` | | ``xt::xarray({{3, 4}, {5, 6}})`` | | | | ``xt::xtensor({{3, 4}, {5, 6}})`` | +------------------------------------------------+------------------------------------------------+ -| ``arr.reshape([3, 4])`` | ``arr.reshape({3, 4})`` | +| ``arr.reshape([3, 4])`` | ``xt::reshape({3, 4})`` | +------------------------------------------------+------------------------------------------------+ | ``arr.astype(np.float64)`` | ``xt::cast(arr)`` | +------------------------------------------------+------------------------------------------------+