Skip to content

Commit 19ae4b9

Browse files
committed
Improve docs
1 parent d018135 commit 19ae4b9

1 file changed

Lines changed: 5 additions & 4 deletions

File tree

probdiffeq/probdiffeq.py

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -444,13 +444,14 @@ def is_keyword(p):
444444
445445
More precisely, the dynamics are expected to look like
446446
447-
- f(u, *, t),
448-
- f(u, du, *, t),
449-
- f(u, du, ddu *, t),
447+
- f(u, /, *, t),
448+
- f(u, du, /, *, t),
449+
- f(u, du, ddu, /, *, t),
450450
451451
and so on, where the number of positional arguments
452452
specifies the order of the problem.
453-
(Mind the keyword-only argument 't' in the signatures above.)
453+
Replace `u`, `du`, and so on with any variable name of your choosing
454+
but mind the keyword-only argument 't' in the signatures above.
454455
455456
That said, the arguments
456457

0 commit comments

Comments
 (0)