Skip to content

Commit

Permalink
docs(readme): fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
Elijas committed Dec 6, 2023
1 parent 4113f20 commit 8b44110
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,7 @@ Here are the suggested ways to import modules from `sec-parser`:
- **`from sec_parser import SomeClass`**: This allows you to directly use `SomeClass` without any prefix.

### Submodule Import (prefix)
- **`import sec_parser.semantic_tree**`**: This imports the `semantic_tree` submodule, and you can access its classes and functions using `semantic_tree.` prefix.
- **`import sec_parser.semantic_tree`**: This imports the `semantic_tree` submodule, and you can access its classes and functions using `semantic_tree.` prefix.

### Submodule Import (direct)
- **`from sec_parser.semantic_tree import SomeClass`**: This imports a specific class `SomeClass` from the `semantic_tree` submodule.
Expand Down

0 comments on commit 8b44110

Please sign in to comment.