Skip to content

Commit a7fc95d

Browse files
authored
Apply suggestions from code review
Co-authored-by: Athan <kgryte@gmail.com>
1 parent 0e13249 commit a7fc95d

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

spec/draft/tutorial_api.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,8 +66,8 @@ We need to rename `newshape` parameter to `shape`, add a `copy` parameter, and e
6666
new positional/keyword calling format.
6767

6868
After researching how users call our `reshape`, we decided to do the following: make `a` positional
69-
only without an extra deprecation message apart from changelog entry, make `shape`
70-
positional or keyword parameter, and make `newshape` and `copy` keyword only:
69+
only without an extra deprecation message apart from a changelog entry, make `shape`
70+
a positional or keyword parameter, and make `newshape` and `copy` keyword only:
7171

7272
```py
7373
def reshape(a, /, shape=None, *, newshape=None, copy=None):

0 commit comments

Comments
 (0)