Skip to content

Commit

Permalink
fix Appendix link
Browse files Browse the repository at this point in the history
  • Loading branch information
davewhipp committed Sep 24, 2024
1 parent f476f0c commit a6c80b3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion source/part1/chapter-02/md/07-modules.md
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ Finally, here are a few tips for using modules in your Python programs:
- Choose logical names when renaming on import. It is preferable to use standard names (e.g., `import pandas as pd`) or select logical shorter names (e.g., `import matplotlib as mpl`) when renaming on import.
- Pay attention to possible name conflicts. When renaming imported modules or importing functions from modules, be careful that the names do not conflict with built-in Python functions (e.g., `import matplotlib as map` would conflict with the built-in Python function `map()`).

Additional examples of best practices for using modules can be found in {doc}`Appendix A.2 <back-matter/nb/appendix-1-best-practices>`.
Additional examples of best practices for using modules can be found in {doc}`Appendix A.2 </back-matter/nb/appendix-1-best-practices>`.
<!-- #endregion -->

<!-- #region editable=true slideshow={"slide_type": ""} -->
Expand Down
2 changes: 1 addition & 1 deletion source/part1/chapter-02/nb/07-modules.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -475,7 +475,7 @@
"- Choose logical names when renaming on import. It is preferable to use standard names (e.g., `import pandas as pd`) or select logical shorter names (e.g., `import matplotlib as mpl`) when renaming on import.\n",
"- Pay attention to possible name conflicts. When renaming imported modules or importing functions from modules, be careful that the names do not conflict with built-in Python functions (e.g., `import matplotlib as map` would conflict with the built-in Python function `map()`).\n",
"\n",
"Additional examples of best practices for using modules can be found in {doc}`Appendix A.2 <back-matter/nb/appendix-1-best-practices>`."
"Additional examples of best practices for using modules can be found in {doc}`Appendix A.2 </back-matter/nb/appendix-1-best-practices>`."
]
},
{
Expand Down

0 comments on commit a6c80b3

Please sign in to comment.