Skip to content

Commit effb635

Browse files
authored
fix: bad (404) link updates (#487)
* fix: bad links * Apply suggestions from code review * more broken things
1 parent dc201f2 commit effb635

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

TRANSLATING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -287,7 +287,7 @@ If a language is ready to go live, the maintainers will add the language code to
287287

288288
When the guide is built for release in CI, Sphinx will also generate the translated versions of the guide for the languages in the `RELEASE_LANGUAGES` list.
289289

290-
Translations are released in the same way as the English version of the guide, and the translated versions will be available in folders named after the language code. For example, the Spanish translation will be available in [https://www.pyopensci.org/python-package-guide/es/](https://www.pyopensci.org/python-package-guide/es/).
290+
Translations are released in the same way as the English version of the guide, and the translated versions will be available in folders named after the language code. For example, the Spanish translation will be available at: `https://www.pyopensci.org/python-package-guide/es/` when it is published online.
291291

292292
## Frequently Asked Questions (FAQ)
293293

bibliography.bib

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,6 @@ @misc{creativecommonsShareAlikeCompatibilityGPLv32015
3838
year = {2015},
3939
month = sep,
4040
journal = {Creative Commons Wiki},
41-
url = {https://wiki.creativecommons.org/wiki/ShareAlike\_compatibility:\_GPLv3},
41+
url = {https://wiki.creativecommons.org/wiki/ShareAlike_compatibility:_GPLv3},
4242
urldate = {2024-03-02}
4343
}

documentation/repository-files/intro.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ name: moving-pandas-github-community
1616
width: 80%
1717
alt: Image showing that the MovingPandas GitHub repository community health page with green checks next to each file including a description, README, code of conduct, contributing, license and issue templates. Note that Security policy has a yellow circle next to it as that is missing from the repo.
1818
---
19-
GitHub community health looks for a readme file among other elements when it evaluates the community level health of your repository. This example is from the [MovingPandas GitHub repo](https://github.com/anitagraser/movingpandas/community) *(screen shot taken Nov 23 2022)*
19+
GitHub community health looks for a readme file among other elements when it evaluates the community level health of your repository. This example is from the [MovingPandas GitHub repo](https://github.com/movingpandas/movingpandas/community) *(screen shot taken Nov 23 2022)*
2020
```
2121

2222
[Snyk](https://snyk.io/advisor/python) is another well-known company that

documentation/repository-files/license-files.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ bibliography:
55

66
(license-file)=
77

8-
# License files for scientific Python open source software
8+
# License files for Python open source software
99

1010
:::{button-link} <https://www.pyopensci.org/about-peer-review/>
1111
:color: primary
@@ -69,7 +69,7 @@ in some cases the license that you want is not available through that online
6969
process.
7070

7171
:::{admonition} License recommendations from the SciPy package
72-
[The SciPy documentation has an excellent overview of licenses.](https://docs.scipy.org/doc/scipy/dev/core-dev/index.html#licensing). One of the key elements
72+
[The SciPy documentation has an excellent overview of licenses.](https://docs.scipy.org/doc/scipy/dev/core-dev/index.html#licensing) One of the key elements
7373
that these docs recommend is ensuring that the license that you select is
7474
compatible with licenses used in many parts of the scientific Python ecosystem.
7575
Below is a highlight of this text which outlines license that are compatible

package-structure-code/code-style-linting-format.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -262,7 +262,7 @@ You type and run:
262262
The pre-commit workflow begins with you adding files that have changes to be
263263
staged in git. Next, you'd run git commit. When you run git commit, the pre-commit
264264
hooks will then run. In this example, Black, the code formatter and flake8, a linter both run. If all of the files pass Black and flake8 checks, then your commit will be recorded. If they don't, the commit is canceled. You will have to fix any flake8 issues,
265-
and then re-add / stage the files to be committed. [_Image Source_](https://ljvmiranda921.github.io/notebook/2018/06/21/precommits-using-black-and-flake8/*)
265+
and then re-add / stage the files to be committed. [_Image Source_](https://ljvmiranda921.github.io/notebook/2018/06/21/precommits-using-black-and-flake8/)
266266
:::
267267

268268
<!-- For instance, if you setup the Black code formatter as a pre-commit hook,

0 commit comments

Comments
 (0)