Skip to content

Commit

Permalink
Fix doc typos (#262)
Browse files Browse the repository at this point in the history
  • Loading branch information
anders-kiaer authored Sep 2, 2020
1 parent a9faa6d commit ef2ebef
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -305,17 +305,17 @@ the plugin author needs only do three things:
def get_some_data(some, arguments) -> pd.DataFrame:
```
3) In the plugin class, define a class method `add_webvizstore` which
returns a list of tuples. The first plugin in each tuple is a reference
to a function, the second plugin is itself a list of argument combinations.
returns a list of tuples. The first item in each tuple is a reference
to a function, the second item is a list of argument combinations
(formatted as dictionaries with `'argument_name': value` pairs).
Arguments with a default value in the function signature does not need to
be provided in the argument dictionaries.

The author of the plugin should provide a list of all the argument
combinations that are imaginable during runtime of the application.
Since it is a class method, the author has access to all the user provided
arguments.

Arguments with a default value in the function signature does not need to
be provided in the argument dictionaries.

A full example could look like e.g.:

```python
Expand Down

0 comments on commit ef2ebef

Please sign in to comment.