From ba3df7639cbff2b800002dfdca47e99f0a86af3d Mon Sep 17 00:00:00 2001 From: Nikita Grigorian Date: Mon, 12 Sep 2022 17:31:00 -0700 Subject: [PATCH] eye doc-string corrections --- dpctl/tensor/_ctors.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/dpctl/tensor/_ctors.py b/dpctl/tensor/_ctors.py index f68e3ca502..e3bb8fe3ec 100644 --- a/dpctl/tensor/_ctors.py +++ b/dpctl/tensor/_ctors.py @@ -1058,12 +1058,12 @@ def eye( Args: n_rows: number of rows in the output array. n_cols (optional): number of columns in the output array. If None, - n_cols = n_rows. Default: `None`. + n_cols = n_rows. Default: `None`. k: index of the diagonal, with 0 as the main diagonal. - A positive value of k is a superdiagonal, a negative value - is a subdiagonal. - Raises `TypeError` if k is not an integer. - Default: `0`. + A positive value of k is a superdiagonal, a negative value + is a subdiagonal. + Raises `TypeError` if k is not an integer. + Default: `0`. dtype (optional): data type of the array. Can be typestring, a `numpy.dtype` object, `numpy` char string, or a numpy scalar type. Default: None