fix the kwargs typo, and a ref from plt to ax (#44)
This commit is contained in:
@@ -300,7 +300,7 @@ def abline(ax, b, m, *args, **kwargs):
|
||||
|
||||
```
|
||||
The addition of `*args` allows any number of
|
||||
non-named arguments to `abline`, while `*kwargs` allows any
|
||||
non-named arguments to `abline`, while `**kwargs` allows any
|
||||
number of named arguments (such as `linewidth=3`) to `abline`.
|
||||
In our function, we pass
|
||||
these arguments verbatim to `ax.plot` above. Readers
|
||||
|
||||
Reference in New Issue
Block a user