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

Small improvement in new_developers.md #4420

Merged
merged 2 commits into from
Jan 7, 2025
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 docs/src/DeveloperDocumentation/new_developers.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,11 +51,11 @@ the following six steps for submitting changes to the OSCAR source:
git checkout -b yi/document_feature
```
4. Edit your source and try out your changes locally (see below). To use your local copy of
the sources, start Julia and
the sources, start Julia and enter the package manager by pressing `]`. Then type
```
]dev /path/to/local/clone/of/your/fork/of/Oscar.jl
dev /path/to/local/clone/of/your/fork/of/Oscar.jl
```
If this succeeds, you can enter `using Oscar` in Julia and it will use your local
If this succeeds, leave the package manager by pressing backspace. You can then enter `using Oscar` in Julia and it will use your local
copy.
5. Once you are done editing, push your branch and open a [pull request](https://docs.github.com/en/pull-requests/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests/creating-a-pull-request). It is
recommended that you open a draft [pull request](https://docs.github.com/en/pull-requests/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests/creating-a-pull-request) to the main OSCAR repository
Expand Down
Loading