Skip to content
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion docs/docs/getting_started/setting_up_shell_completions.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ If you have `oh-my-zsh` installed, you might already have a directory of automat
If not, first create it:

```bash
mkdir -p ~/.oh-my-zsh/completions`
mkdir -p ~/.oh-my-zsh/completions
```

Then copy the completion script to that directory:
Expand Down
4 changes: 2 additions & 2 deletions docs/docs/how_to/using-devcontainers.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -73,11 +73,11 @@ Github comes with a default codespace and you can use it to code your own devcon
}
}
```
#### 6. Commit and push your changes
#### 5. Commit and push your changes

This will pull the new image and build it, so it could take a minute or so

#### 8. Done!
#### 6. Done!
Just wait for the build to finish, and there's your easy Noir environment. Some examples of how to use it can be found in the [awesome-noir](https://github.com/noir-lang/awesome-noir?tab=readme-ov-file#boilerplates) repository.

## How do I use it?
Expand Down
3 changes: 3 additions & 0 deletions scripts/redo-typo-pr.sh
Original file line number Diff line number Diff line change
Expand Up @@ -34,4 +34,7 @@ gh pr create --base master --head $NEW_BRANCH --title "chore: redo typo PR by $A
echo "Closing original PR #$ORIGINAL_PR_NUMBER"
gh pr close $ORIGINAL_PR_NUMBER

# Step 7: Delete the temporary branch
git branch -D typo-pr-branch

echo "Script completed."
Loading