Skip to content

Commit 2d0d115

Browse files
committed
Fixed docstring for full() function
1 parent 2b18781 commit 2d0d115

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

dpnp/dpnp_container.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ def full(shape,
129129
if isinstance(fill_value, dpnp_array):
130130
fill_value = fill_value.get_array()
131131

132-
"""Creates `dpnp_array` where every element is equal to fill_value."""
132+
"""Creates `dpnp_array` having a specified shape, filled with fill_value."""
133133
array_obj = dpt.full(shape,
134134
fill_value,
135135
dtype=dtype,

0 commit comments

Comments
 (0)