Skip to content

Commit cde9837

Browse files
committed
Fix: more edits from the review
1 parent 07d5778 commit cde9837

File tree

2 files changed

+4
-7
lines changed

2 files changed

+4
-7
lines changed

index.md

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,6 @@ Learn about our open peer review process
3232
:::
3333
::::
3434

35-
<!-- I think this is the end of the header - below begins the next grid-->
3635

3736
::::{grid} 1 1 2 2
3837
:class-container: text-center
@@ -162,8 +161,6 @@ Learn about our open peer review process
162161
:::
163162
::::
164163

165-
<!-- I think this is the end of the header - below begins the next grid-->
166-
167164
::::{grid} 1 1 2 2
168165
:class-container: text-center
169166
:gutter: 3

tutorials/intro.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ well.
8383

8484
<img src="../images/tutorials/package-components.png" alt="Diagram showing .. more here if this stays." width="500px">
8585

86-
The elements of a Python package include code, documentation, tests a OSI-approved license and a specific directory structure. Maintainers are at the core making sure everything works and is up to date while fixing bugs and addressing user concerns.
86+
The elements of a Python package include code, documentation, tests, an OSI-approved license and a specific directory structure. Maintainers are at the core making sure everything works and is up to date while fixing bugs and addressing user concerns.
8787
:::
8888

8989
The core elements of Python package include:
@@ -114,11 +114,11 @@ A package in any language is more than just code. If your package is public faci
114114
### Version control and storing your package on GitHub or GitLab
115115

116116
Most Python packages live in an online version control platform such as GitHub
117-
or GitLab. GitHub and GitLab are both online platforms that
118-
run [git](https://git-scm.com/) for version control. Have your software
117+
or GitLab. GitHub and GitLab are both
118+
run [git](https://git-scm.com/) for version control. Having your software
119119
under version control is important because it allows you to both track changes over time while also going back in history and undoing changes in the case that a change to the code base unexpectedly breaks something.
120120

121-
By publishing your package on GitHub or GitLab, you are now making your code public facing. this means that others can both see your code and also make contributions using a pull request - review workflow.
121+
By publishing your package on GitHub or GitLab, you are making your code public facing. This means that others can both see your code and also make contributions using a pull request (merge request in GitLab) - code review workflow.
122122

123123
:::{admonition} GitHub & GitLab vs. Git
124124
:class: tip

0 commit comments

Comments
 (0)