Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix typos in contributing.md #168

Merged
merged 1 commit into from
Oct 18, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ Typically this means:
5. Pushing the code back to Github
6. [Create a new Pull Request](https://help.github.com/articles/creating-a-pull-request/)

One of the code owners will review your code and request changes if needed. Once your changes have been approved, your contributions will become part of *duqtools*. 🎉
One of the code owners will review your code and request changes if needed. Once your changes have been approved, your contributions will become part of *GEMDAT*. 🎉

## Getting started with development

Expand All @@ -50,7 +50,7 @@ git clone https://github.com/GEMDAT-repos/GEMDAT gemdat
Install using `virtualenv`:

```console
cd duqtools
cd gemdat
python3 -m venv env
source env/bin/activate
python3 -m pip install -e .[develop]
Expand All @@ -67,7 +67,7 @@ pip install -e .[develop]

### Running tests

Duqtools uses [pytest](https://docs.pytest.org/en/latest/) to run the tests. You can run the tests for yourself using:
GEMDAT uses [pytest](https://docs.pytest.org/en/latest/) to run the tests. You can run the tests for yourself using:

```console
pytest
Expand Down