Skip to content

Commit 2a16a61

Browse files
committed
bug: admonition syntax
Updated admonition formatting from 'admonition' to 'tip' for clarity.
1 parent afd2df0 commit 2a16a61

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

package-structure-code/declare-dependencies.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ There are three different types of dependencies that you will learn about on thi
5858
2. **Feature Dependencies:** These are dependencies that are required if a user wants to access additional functionality (that is not core) to your package. Store these in the `[project.optional.dependencies]` table or your pyproject.toml file.
5959
3. **Development Dependencies:** These dependencies are required if someone wants to develop or work on your package. These include instance linters, testing tools like pytest and mypy are examples of development dependencies. Store these in the `[project.dependency.groups]` table or your pyproject.toml file.
6060

61-
:::{admonition}
61+
:::{tip}
6262
A dependency is not part of your project's codebase. It is a package or software called
6363
within the code of your project or used during the development of your package.
6464
:::
@@ -85,7 +85,7 @@ dependencies = [
8585
]
8686
```
8787

88-
:::{admonition
88+
:::{tip}
8989
Try your best to minimize dependencies whenever possible. Remember that
9090
fewer dependencies reduce the possibility of version conflicts in user
9191
environments.

0 commit comments

Comments
 (0)