Skip to content

Commit

Permalink
docs: Fix typo (#182)
Browse files Browse the repository at this point in the history
  • Loading branch information
AntoineD authored Jul 22, 2023
1 parent 86f152e commit 1e7b869
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docs/extensions.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ griffe dump griffe -e pydantic,scripts/exts.py:DynamicDocstrings,griffe_attrs
griffe check --search src griffe -e '[
{"pydantic": {"schema": true}},
{
"scripts/exts.py:DynamicDoctrings": {
"scripts/exts.py:DynamicDocstrings": {
"paths": ["mypkg.mymod.myobj"]
}
},
Expand Down Expand Up @@ -89,7 +89,7 @@ from mypackage.extensions import ThisExtension, ThisOtherExtension
extensions = griffe.load_extensions(
[
{"pydantic": {"schema": true}},
{"scripts/exts.py:DynamicDoctrings": {"paths": ["mypkg.mymod.myobj"]}},
{"scripts/exts.py:DynamicDocstrings": {"paths": ["mypkg.mymod.myobj"]}},
"griffe_attrs",
ThisExtension(option="value"),
ThisOtherExtension,
Expand All @@ -111,7 +111,7 @@ plugins:
options:
extensions:
- pydantic: {schema: true}
- scripts/exts.py:DynamicDoctrings:
- scripts/exts.py:DynamicDocstrings:
paths: [mypkg.mymod.myobj]
- griffe_attrs
```
Expand Down

0 comments on commit 1e7b869

Please sign in to comment.